From d236b6a8d2f7b45a41fcfcc2a09adad20382321f Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Fri, 16 Jun 2023 15:20:53 +0200 Subject: [PATCH 1/8] Initial helm creation --- .github/workflows/build-push-helm.yaml | 18 +++++++ ci/make_helm_release.sh | 29 +++++++++++ helm/quotes-flask/.helmignore | 23 +++++++++ helm/quotes-flask/Chart.yaml | 21 ++++++++ helm/quotes-flask/templates/NOTES.txt | 1 + .../templates/backend-configmap.yaml | 9 ++++ .../templates/backend-deployment.yaml | 31 ++++++++++++ .../templates/backend-service.yaml | 17 +++++++ .../templates/frontend-deployment.yaml | 44 ++++++++++++++++ .../templates/frontend-service.yaml | 16 ++++++ .../templates/postgres-configmap.yaml | 9 ++++ .../templates/postgres-deployment.yaml | 50 +++++++++++++++++++ helm/quotes-flask/templates/postgres-pvc.yaml | 12 +++++ .../templates/postgres-secret.yaml | 7 +++ .../templates/postgres-service.yaml | 17 +++++++ helm/quotes-flask/values.yaml | 6 +++ 16 files changed, 310 insertions(+) create mode 100644 .github/workflows/build-push-helm.yaml create mode 100755 ci/make_helm_release.sh create mode 100644 helm/quotes-flask/.helmignore create mode 100644 helm/quotes-flask/Chart.yaml create mode 100644 helm/quotes-flask/templates/NOTES.txt create mode 100644 helm/quotes-flask/templates/backend-configmap.yaml create mode 100644 helm/quotes-flask/templates/backend-deployment.yaml create mode 100644 helm/quotes-flask/templates/backend-service.yaml create mode 100644 helm/quotes-flask/templates/frontend-deployment.yaml create mode 100644 helm/quotes-flask/templates/frontend-service.yaml create mode 100644 helm/quotes-flask/templates/postgres-configmap.yaml create mode 100644 helm/quotes-flask/templates/postgres-deployment.yaml create mode 100644 helm/quotes-flask/templates/postgres-pvc.yaml create mode 100644 helm/quotes-flask/templates/postgres-secret.yaml create mode 100644 helm/quotes-flask/templates/postgres-service.yaml create mode 100644 helm/quotes-flask/values.yaml diff --git a/.github/workflows/build-push-helm.yaml b/.github/workflows/build-push-helm.yaml new file mode 100644 index 0000000..6cf6bf3 --- /dev/null +++ b/.github/workflows/build-push-helm.yaml @@ -0,0 +1,18 @@ +name: build and push helm +on: + push: + branches: + - main + - wip/sal/helm +jobs: + helm-build: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v3 + - name: helm build + uses: azure/setup-helm@v1 + with: + version: v3.5.4 + - name: helm login + run: helm registry login -u ${{ github.actor }} -p ${{ github.token}} ghcr.io \ No newline at end of file diff --git a/ci/make_helm_release.sh b/ci/make_helm_release.sh new file mode 100755 index 0000000..8d4697e --- /dev/null +++ b/ci/make_helm_release.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash + +REGISTRY="ghcr.io/eficode-academy" +FRONTEND_REPOSITORY="quotes-flask-frontend" +BACKEND_REPOSITORY="quotes-flask-backend" +HELM_REPOSITORY="quotes-flask-helm" +VERSIONS=" +1.0.0 +2.0.0 +3.0.0 +4.0.0 +5.0.0 +" + +echo "Creating Helm releases ..." +cd helm + +for VERSION in $VERSIONS; do + echo "Creating Helm release: $VERSION" + FRONTEND_IMAGE="$REGISTRY/$FRONTEND_REPOSITORY:$VERSION" + BACKEND_IMAGE="$REGISTRY/$BACKEND_REPOSITORY:$VERSION" + echo "generating helm release for $VERSION" + VERSION=$VERSION yq -i '.version = env(VERSION)' quotes-flask/Chart.yaml + VERSION=$VERSION yq -i '.appVersion = env(VERSION)' quotes-flask/Chart.yaml + FRONTEND_IMAGE=$FRONTEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(FRONTEND_IMAGE)' quotes-flask/templates/frontend-deployment.yaml + BACKEND_IMAGE=$BACKEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(BACKEND_IMAGE)' quotes-flask/templates/backend-deployment.yaml + echo "helm push quotes-flask $VERSION" + +done \ No newline at end of file diff --git a/helm/quotes-flask/.helmignore b/helm/quotes-flask/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/helm/quotes-flask/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/helm/quotes-flask/Chart.yaml b/helm/quotes-flask/Chart.yaml new file mode 100644 index 0000000..b68808f --- /dev/null +++ b/helm/quotes-flask/Chart.yaml @@ -0,0 +1,21 @@ +apiVersion: v2 +name: quotes-flask +description: A Helm chart for Kubernetes +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: "5.0.0" +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "5.0.0" diff --git a/helm/quotes-flask/templates/NOTES.txt b/helm/quotes-flask/templates/NOTES.txt new file mode 100644 index 0000000..5653ec3 --- /dev/null +++ b/helm/quotes-flask/templates/NOTES.txt @@ -0,0 +1 @@ +Congratulations you have now installed the quotes-flask application on your machine! \ No newline at end of file diff --git a/helm/quotes-flask/templates/backend-configmap.yaml b/helm/quotes-flask/templates/backend-configmap.yaml new file mode 100644 index 0000000..2913abf --- /dev/null +++ b/helm/quotes-flask/templates/backend-configmap.yaml @@ -0,0 +1,9 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: backend-config +data: + # all data points are handled as strings + backend_host: "backend" + backend_port: "5000" diff --git a/helm/quotes-flask/templates/backend-deployment.yaml b/helm/quotes-flask/templates/backend-deployment.yaml new file mode 100644 index 0000000..cf8afce --- /dev/null +++ b/helm/quotes-flask/templates/backend-deployment.yaml @@ -0,0 +1,31 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: null + labels: + app: backend + name: backend +spec: + replicas: {{ .Values.backend.replicas }} + selector: + matchLabels: + app: backend + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: backend + spec: + containers: + - image: ghcr.io/eficode-academy/quotes-flask-backend:release + name: quotes-flask-backend + ports: + - containerPort: 5000 + resources: {} + envFrom: + - configMapRef: + name: postgres-config + - secretRef: + name: postgres-secret +status: {} diff --git a/helm/quotes-flask/templates/backend-service.yaml b/helm/quotes-flask/templates/backend-service.yaml new file mode 100644 index 0000000..05a3d44 --- /dev/null +++ b/helm/quotes-flask/templates/backend-service.yaml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Service +metadata: + creationTimestamp: null + labels: + app: backend + name: backend +spec: + ports: + - port: 5000 + protocol: TCP + targetPort: 5000 + selector: + app: backend + type: ClusterIP +status: + loadBalancer: {} diff --git a/helm/quotes-flask/templates/frontend-deployment.yaml b/helm/quotes-flask/templates/frontend-deployment.yaml new file mode 100644 index 0000000..2200f11 --- /dev/null +++ b/helm/quotes-flask/templates/frontend-deployment.yaml @@ -0,0 +1,44 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: null + labels: + app: frontend + name: frontend +spec: + replicas: {{ .Values.frontend.replicas }} + selector: + matchLabels: + app: frontend + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: frontend + spec: + containers: + - image: ghcr.io/eficode-academy/quotes-flask-frontend:release + name: quotes-flask-frontend + ports: + - containerPort: 5000 + resources: {} + env: + # load namespace from downward api + # https://github.com/kubernetes/kubernetes/blob/release-1.0/docs/user-guide/downward-api.md + - name: NAMESPACE + valueFrom: + fieldRef: + fieldPath: metadata.namespace + - name: BACKEND_HOST + valueFrom: + configMapKeyRef: + name: backend-config + key: backend_host + - name: BACKEND_PORT + valueFrom: + configMapKeyRef: + name: backend-config + key: backend_port + +status: {} diff --git a/helm/quotes-flask/templates/frontend-service.yaml b/helm/quotes-flask/templates/frontend-service.yaml new file mode 100644 index 0000000..dba5648 --- /dev/null +++ b/helm/quotes-flask/templates/frontend-service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + creationTimestamp: null + labels: + app: frontend + name: frontend +spec: + ports: + - port: 5000 + protocol: TCP + targetPort: 5000 + selector: + app: frontend + type: {{ .Values.frontend.service.type}} +status: diff --git a/helm/quotes-flask/templates/postgres-configmap.yaml b/helm/quotes-flask/templates/postgres-configmap.yaml new file mode 100644 index 0000000..d363505 --- /dev/null +++ b/helm/quotes-flask/templates/postgres-configmap.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: postgres-config +data: + DB_HOST: postgres + DB_PORT: '5432' + DB_USER: superuser + DB_NAME: quotes \ No newline at end of file diff --git a/helm/quotes-flask/templates/postgres-deployment.yaml b/helm/quotes-flask/templates/postgres-deployment.yaml new file mode 100644 index 0000000..934c34c --- /dev/null +++ b/helm/quotes-flask/templates/postgres-deployment.yaml @@ -0,0 +1,50 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: null + labels: + app: postgres + name: postgres +spec: + replicas: 1 + selector: + matchLabels: + app: postgres + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: postgres + spec: + volumes: + - name: postgres-pvc # name we can reference below in container + persistentVolumeClaim: + claimName: postgres-pvc # name of the actual pvc + containers: + - image: postgres:14.3 + name: postgres + ports: + - containerPort: 5432 + resources: {} + env: + - name: POSTGRES_USER + valueFrom: + configMapKeyRef: + name: postgres-config + key: DB_USER + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: postgres-secret + key: DB_PASSWORD + - name: POSTGRES_DB + valueFrom: + configMapKeyRef: + name: postgres-config + key: DB_NAME + volumeMounts: + - name: postgres-pvc + mountPath: /var/lib/postgresql/data + subPath: postgres +status: {} diff --git a/helm/quotes-flask/templates/postgres-pvc.yaml b/helm/quotes-flask/templates/postgres-pvc.yaml new file mode 100644 index 0000000..98d94e4 --- /dev/null +++ b/helm/quotes-flask/templates/postgres-pvc.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: postgres-pvc +spec: + # default. Use `kubectl get sc` too what storage classes are configured + storageClassName: "gp2" + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 5Gi diff --git a/helm/quotes-flask/templates/postgres-secret.yaml b/helm/quotes-flask/templates/postgres-secret.yaml new file mode 100644 index 0000000..063f08a --- /dev/null +++ b/helm/quotes-flask/templates/postgres-secret.yaml @@ -0,0 +1,7 @@ +apiVersion: v1 +data: + DB_PASSWORD: Y29tcGxpY2F0ZWQ= +kind: Secret +metadata: + creationTimestamp: + name: postgres-secret diff --git a/helm/quotes-flask/templates/postgres-service.yaml b/helm/quotes-flask/templates/postgres-service.yaml new file mode 100644 index 0000000..9b8277c --- /dev/null +++ b/helm/quotes-flask/templates/postgres-service.yaml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Service +metadata: + creationTimestamp: null + labels: + app: postgres + name: postgres +spec: + ports: + - port: 5432 + protocol: TCP + targetPort: 5432 + selector: + app: postgres + type: ClusterIP +status: + loadBalancer: {} diff --git a/helm/quotes-flask/values.yaml b/helm/quotes-flask/values.yaml new file mode 100644 index 0000000..7f9d841 --- /dev/null +++ b/helm/quotes-flask/values.yaml @@ -0,0 +1,6 @@ +backend: + replicas: 1 +frontend: + replicas: 1 + service: + type: NodePort \ No newline at end of file From f4aee28120a2e3fe83ba236852be9cb0d174f8bc Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Fri, 16 Jun 2023 15:23:16 +0200 Subject: [PATCH 2/8] Up helm version to 3.12 --- .github/workflows/build-push-helm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-push-helm.yaml b/.github/workflows/build-push-helm.yaml index 6cf6bf3..eaa7327 100644 --- a/.github/workflows/build-push-helm.yaml +++ b/.github/workflows/build-push-helm.yaml @@ -13,6 +13,6 @@ jobs: - name: helm build uses: azure/setup-helm@v1 with: - version: v3.5.4 + version: v3.12.0 - name: helm login run: helm registry login -u ${{ github.actor }} -p ${{ github.token}} ghcr.io \ No newline at end of file From 82ffd00239bd897f8da05266da706b85cbe6b666 Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Fri, 16 Jun 2023 15:38:52 +0200 Subject: [PATCH 3/8] Works on my machine --- ci/make_helm_release.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/make_helm_release.sh b/ci/make_helm_release.sh index 8d4697e..4e63772 100755 --- a/ci/make_helm_release.sh +++ b/ci/make_helm_release.sh @@ -4,6 +4,7 @@ REGISTRY="ghcr.io/eficode-academy" FRONTEND_REPOSITORY="quotes-flask-frontend" BACKEND_REPOSITORY="quotes-flask-backend" HELM_REPOSITORY="quotes-flask-helm" +QUOTES="quotes-flask" VERSIONS=" 1.0.0 2.0.0 @@ -25,5 +26,8 @@ for VERSION in $VERSIONS; do FRONTEND_IMAGE=$FRONTEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(FRONTEND_IMAGE)' quotes-flask/templates/frontend-deployment.yaml BACKEND_IMAGE=$BACKEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(BACKEND_IMAGE)' quotes-flask/templates/backend-deployment.yaml echo "helm push quotes-flask $VERSION" + helm package quotes-flask + echo "$PWD" + helm push $QUOTES-$VERSION.tgz oci://ghcr.io/eficode-academy done \ No newline at end of file From def8ed397ae9b767cb4585d9b0e9b3295eef8043 Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Mon, 26 Jun 2023 21:32:37 +0200 Subject: [PATCH 4/8] FIXED helm release scripts Templated the tag of the version of the images Added YQ to script multiple versions --- ci/make_helm_release.sh | 7 ++----- helm/quotes-flask/templates/backend-deployment.yaml | 2 +- helm/quotes-flask/templates/frontend-deployment.yaml | 2 +- helm/quotes-flask/values.yaml | 4 +++- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/ci/make_helm_release.sh b/ci/make_helm_release.sh index 4e63772..e370822 100755 --- a/ci/make_helm_release.sh +++ b/ci/make_helm_release.sh @@ -18,16 +18,13 @@ cd helm for VERSION in $VERSIONS; do echo "Creating Helm release: $VERSION" - FRONTEND_IMAGE="$REGISTRY/$FRONTEND_REPOSITORY:$VERSION" - BACKEND_IMAGE="$REGISTRY/$BACKEND_REPOSITORY:$VERSION" echo "generating helm release for $VERSION" VERSION=$VERSION yq -i '.version = env(VERSION)' quotes-flask/Chart.yaml VERSION=$VERSION yq -i '.appVersion = env(VERSION)' quotes-flask/Chart.yaml - FRONTEND_IMAGE=$FRONTEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(FRONTEND_IMAGE)' quotes-flask/templates/frontend-deployment.yaml - BACKEND_IMAGE=$BACKEND_IMAGE yq -i '.spec.template.spec.containers[0].image = env(BACKEND_IMAGE)' quotes-flask/templates/backend-deployment.yaml + VERSION=$VERSION yq -i '.backend.tag = env(VERSION)' quotes-flask/values.yaml + VERSION=$VERSION yq -i '.frontend.tag = env(VERSION)' quotes-flask/values.yaml echo "helm push quotes-flask $VERSION" helm package quotes-flask - echo "$PWD" helm push $QUOTES-$VERSION.tgz oci://ghcr.io/eficode-academy done \ No newline at end of file diff --git a/helm/quotes-flask/templates/backend-deployment.yaml b/helm/quotes-flask/templates/backend-deployment.yaml index cf8afce..b081cf1 100644 --- a/helm/quotes-flask/templates/backend-deployment.yaml +++ b/helm/quotes-flask/templates/backend-deployment.yaml @@ -18,7 +18,7 @@ spec: app: backend spec: containers: - - image: ghcr.io/eficode-academy/quotes-flask-backend:release + - image: ghcr.io/eficode-academy/quotes-flask-backend:{{ .Values.backend.tag }} name: quotes-flask-backend ports: - containerPort: 5000 diff --git a/helm/quotes-flask/templates/frontend-deployment.yaml b/helm/quotes-flask/templates/frontend-deployment.yaml index 2200f11..8427e77 100644 --- a/helm/quotes-flask/templates/frontend-deployment.yaml +++ b/helm/quotes-flask/templates/frontend-deployment.yaml @@ -18,7 +18,7 @@ spec: app: frontend spec: containers: - - image: ghcr.io/eficode-academy/quotes-flask-frontend:release + - image: ghcr.io/eficode-academy/quotes-flask-frontend:{{ .Values.frontend.tag }} name: quotes-flask-frontend ports: - containerPort: 5000 diff --git a/helm/quotes-flask/values.yaml b/helm/quotes-flask/values.yaml index 7f9d841..042efe0 100644 --- a/helm/quotes-flask/values.yaml +++ b/helm/quotes-flask/values.yaml @@ -1,6 +1,8 @@ backend: replicas: 1 + tag: 5.0.0 frontend: replicas: 1 service: - type: NodePort \ No newline at end of file + type: NodePort + tag: 5.0.0 From 7f74612b1b56e8b0299b8271ba46cb15ec8664d6 Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Mon, 26 Jun 2023 21:34:13 +0200 Subject: [PATCH 5/8] ADD make helm release to CI --- .github/workflows/build-push-helm.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-push-helm.yaml b/.github/workflows/build-push-helm.yaml index eaa7327..dbfee0f 100644 --- a/.github/workflows/build-push-helm.yaml +++ b/.github/workflows/build-push-helm.yaml @@ -15,4 +15,6 @@ jobs: with: version: v3.12.0 - name: helm login - run: helm registry login -u ${{ github.actor }} -p ${{ github.token}} ghcr.io \ No newline at end of file + run: helm registry login -u ${{ github.actor }} -p ${{ github.token}} ghcr.io + - name: helm build and release + run: ci/make_helm_release.sh \ No newline at end of file From 59dcd7c375bce66c0440650f92fbc4ebc3ee108b Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Mon, 26 Jun 2023 21:36:18 +0200 Subject: [PATCH 6/8] ADD propper permissions to helm CI --- .github/workflows/build-push-helm.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-push-helm.yaml b/.github/workflows/build-push-helm.yaml index dbfee0f..4909697 100644 --- a/.github/workflows/build-push-helm.yaml +++ b/.github/workflows/build-push-helm.yaml @@ -4,6 +4,9 @@ on: branches: - main - wip/sal/helm +permissions: + contents: read + packages: write jobs: helm-build: runs-on: ubuntu-latest From 4fc9e821619c590c391daeb8258677399f7869f4 Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Tue, 27 Jun 2023 13:53:33 +0200 Subject: [PATCH 7/8] ADD section in readme on how to use the helm chart --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 969ab55..f33b310 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,24 @@ For kind this will unintuitively be the `INTERNAL-IP`, for a cloud cluster use t E.g. in a browser go to: `172.19.0.2:` +### Kubernetes using Helm + +Helm chart is supplied in the `helm/quotes-flask` directory. + +Deploying the application using `helm`: + +```sh +helm install quotes-flask helm/quotes-flask +``` + +See the release with `helm list`, and get the NodePort with `kubectl get service frontend`. + +You can change the values of the helm chart by supplying a `values.yaml` file, or by using the `--set` flag. + +```sh +helm install quotes-flask helm/quotes-flask --set frontend.tag="3.0.0" +``` + ## Developing ### docker-compose From 87f3a21a9b6769cddf5c303257d7f684dd6fc5d3 Mon Sep 17 00:00:00 2001 From: Sofus Albertsen Date: Tue, 27 Jun 2023 13:53:48 +0200 Subject: [PATCH 8/8] SET default values to either 1.0.0 or release --- helm/quotes-flask/Chart.yaml | 4 ++-- helm/quotes-flask/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helm/quotes-flask/Chart.yaml b/helm/quotes-flask/Chart.yaml index b68808f..2b45d7c 100644 --- a/helm/quotes-flask/Chart.yaml +++ b/helm/quotes-flask/Chart.yaml @@ -13,9 +13,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "5.0.0" +version: "1.0.0" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "5.0.0" +appVersion: "1.0.0" diff --git a/helm/quotes-flask/values.yaml b/helm/quotes-flask/values.yaml index 042efe0..2b65513 100644 --- a/helm/quotes-flask/values.yaml +++ b/helm/quotes-flask/values.yaml @@ -1,8 +1,8 @@ backend: replicas: 1 - tag: 5.0.0 + tag: release frontend: replicas: 1 service: type: NodePort - tag: 5.0.0 + tag: release