From e7e840ac2aba3fd88549e29ccbae5321ee7a60d8 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 5 Sep 2023 20:30:11 -0400 Subject: [PATCH 1/2] fix: typo in "Create Next.js App" (#161) * fix: typo in "Create Next.js App" * Update "App" to be uppercase --------- Co-authored-by: elvis kahoro --- specs/nextjs/create_next_app.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/nextjs/create_next_app.yaml b/specs/nextjs/create_next_app.yaml index 93ec0bd5..956abff5 100644 --- a/specs/nextjs/create_next_app.yaml +++ b/specs/nextjs/create_next_app.yaml @@ -1,5 +1,5 @@ --- -name: Create Next.JS app +name: Create Next.js App command: npx create-next-app {{project_name}} --use-{{package_manager}} tags: - react @@ -12,7 +12,7 @@ arguments: description: The package manager to use for the application default_value: npm source_url: https://nextjs.org/docs/api-reference/create-next-app -description: Create Next.JS application +description: Create a new Next.js application author: Lukas Varkalis author_url: https://github.com/lukasvarkalis shells: [] From be86b6cf8f207cd78ab1dad7c0f7b472d12c0b40 Mon Sep 17 00:00:00 2001 From: Pantelis Karamolegkos Date: Wed, 6 Sep 2023 08:31:11 +0300 Subject: [PATCH 2/2] List pod images by app (#148) * List pods images by app label * Setting correct source_url * Update list_pod_images_by_app.yaml * Changing soure_url and renaming flow to sth more specific as suggested --------- Co-authored-by: Aloke Desai Co-authored-by: elvis kahoro --- specs/kubernetes/list_pod_images_by_app.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 specs/kubernetes/list_pod_images_by_app.yaml diff --git a/specs/kubernetes/list_pod_images_by_app.yaml b/specs/kubernetes/list_pod_images_by_app.yaml new file mode 100644 index 00000000..0d6ad827 --- /dev/null +++ b/specs/kubernetes/list_pod_images_by_app.yaml @@ -0,0 +1,15 @@ +--- +name: List all Kubernetes pods by app label +command: > + kubectl get pods -l app={{app}} -o jsonpath='{range .items[*]}{"\n"}{range .spec.containers[*]}{.name}{"\t"}{.image}{"\n"}{end}{end}' | sort | uniq +tags: + - kubernetes +description: Lists the images of pods fetched by app label +arguments: + - name: app + description: The value of the app label + default_value: ~ +source_url: "https://kubernetes.io/docs/reference/kubectl/jsonpath/" +author: pkaramol +author_url: "https://www.linkedin.com/in/pkaramol/" +shells: []