From 835851219e76bb75679821f25b339491779d7728 Mon Sep 17 00:00:00 2001 From: Mirko Teodorovic Date: Fri, 22 Nov 2024 13:09:11 +0100 Subject: [PATCH 1/5] Update values.yaml --- helm-guestbook/values.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/helm-guestbook/values.yaml b/helm-guestbook/values.yaml index 4c4af225a8..15c564d538 100644 --- a/helm-guestbook/values.yaml +++ b/helm-guestbook/values.yaml @@ -2,7 +2,7 @@ # This is a YAML-formatted file. # Declare variables to be passed into your templates. -replicaCount: 3 +replicaCount: 1 image: repository: gcr.io/heptio-images/ks-guestbook-demo @@ -13,7 +13,7 @@ containerPort: 80 service: type: ClusterIP - port: 88 + port: 80 ingress: enabled: false @@ -28,17 +28,17 @@ ingress: # hosts: # - chart-example.local -resources: {} +resources: # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following # lines, adjust them as necessary, and remove the curly braces after 'resources:'. - # limits: - # cpu: 100m - # memory: 128Mi - # requests: - # cpu: 100m - # memory: 128Mi + limits: + cpu: 100m + memory: 128Mi + requests: + cpu: 100m + memory: 128Mi nodeSelector: {} From 41836ab76c6c88f835c3f5ca35f44152dac7e9e6 Mon Sep 17 00:00:00 2001 From: Mirko Teodorovic Date: Fri, 22 Nov 2024 13:09:30 +0100 Subject: [PATCH 2/5] Delete helm-guestbook/confi directory --- helm-guestbook/confi/values-mt.yaml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 helm-guestbook/confi/values-mt.yaml diff --git a/helm-guestbook/confi/values-mt.yaml b/helm-guestbook/confi/values-mt.yaml deleted file mode 100644 index 5ba6169c7d..0000000000 --- a/helm-guestbook/confi/values-mt.yaml +++ /dev/null @@ -1,26 +0,0 @@ - -# Default values for helm-guestbook. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. - -replicaCount: 3 - -image: - repository: gcr.io/heptio-images/ks-guestbook-demo - tag: 0.1 - pullPolicy: IfNotPresent - -service: - type: ClusterIP - port: 89 - -ingress: - enabled: false - annotations: - kubernetes.io/ingress.class: nginx - kubernetes.io/tls-acme: "true" - path: / - hosts: - - chart-example.local - - From 4174785ff457e4bd78a71b5dff6d684d0f29d800 Mon Sep 17 00:00:00 2001 From: Mirko Date: Wed, 27 Nov 2024 14:01:57 +0100 Subject: [PATCH 3/5] add appset generator Signed-off-by: Mirko --- helm2/.DS_Store | Bin 0 -> 6148 bytes helm2/app1/.DS_Store | Bin 0 -> 6148 bytes helm2/app1/appset.yaml | 40 +++++++++++++++++++++++++ helm2/app1/prod/cluster11/config.json | 11 +++++++ helm2/app1/prod/in-cluster/config.json | 11 +++++++ helm2/app1/qa/cluster22/config.json | 11 +++++++ helm2/app1/qa/cluster22/test | 1 + helm2/cluster/appset.yaml | 30 +++++++++++++++++++ 8 files changed, 104 insertions(+) create mode 100644 helm2/.DS_Store create mode 100644 helm2/app1/.DS_Store create mode 100644 helm2/app1/appset.yaml create mode 100644 helm2/app1/prod/cluster11/config.json create mode 100644 helm2/app1/prod/in-cluster/config.json create mode 100644 helm2/app1/qa/cluster22/config.json create mode 100644 helm2/app1/qa/cluster22/test create mode 100644 helm2/cluster/appset.yaml diff --git a/helm2/.DS_Store b/helm2/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..fd7671c47f2a8e5040dda4941b406b065320c6cc GIT binary patch literal 6148 zcmeHK%}T>S5Z<*>6N-?7g5DOq7Hl;2;w8lT0!H+pQWH`%7_+5G?V%KM*BA0dd>&_Z zH)63~MeI!3{pNQ!`$6}IF~-A5>M`ar#%ySa9F--4?xmqMlZ?o5jAUAll3XTWznR!y z2mE%6#cTvW@9Xy`qdY6CZugz9wXF4xP20BH_HFbar%@GGlQN9Q*JxcxnJ0}NCzsi9 zI&im7Wl_ahF&wLcEFD71%~e*UavI7>k(R19(gE9XoPoPHoB2n6M;!Y8yd!3w*XwnJ z-#ebq9eZd0;N*Ppm_HTrMKj8Qa3xy?8+Zlfb3xD1xX5L3556Y9$s;5Nhyh}N7+6^b z%#mQXSC#=d=_7x! zge+o!82D!laH}8nLs*nKTfZ$2&sqWP4jKyP)u@1gzHkWu1NV_#71VKoI^+cgYmGPx S`c*j~T?7;%)DZ)}z`zHu+e#S# literal 0 HcmV?d00001 diff --git a/helm2/app1/.DS_Store b/helm2/app1/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Thu, 28 Nov 2024 14:30:20 +0100 Subject: [PATCH 4/5] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9b0ec34d2e..237bdd0ce3 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ This repository contains example applications for demoing ArgoCD functionality. to register this repository to your ArgoCD instance, or fork this repo and push your own commits to explore ArgoCD and GitOps! + | Application | Description | |-------------|-------------| | [guestbook](guestbook/) | A hello word guestbook app as plain YAML | From bcdb91c30d92823d245b187602d78de09ef28d91 Mon Sep 17 00:00:00 2001 From: Mirko Teodorovic Date: Thu, 28 Nov 2024 14:32:30 +0100 Subject: [PATCH 5/5] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 237bdd0ce3..8ee50e9a83 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ to register this repository to your ArgoCD instance, or fork this repo and push to explore ArgoCD and GitOps! + + | Application | Description | |-------------|-------------| | [guestbook](guestbook/) | A hello word guestbook app as plain YAML |