From cee6cb08448032bd12b990ea61d76623d3d1fdd8 Mon Sep 17 00:00:00 2001 From: nkowenski Date: Thu, 26 Sep 2024 01:00:27 +0200 Subject: [PATCH] Update readme and clean old tags and archs in yamls --- README.md | 25 ++++++++------------- yaml/02_deployment.yaml | 4 ++-- yaml/other-archs/02_deployment.yaml | 34 ----------------------------- 3 files changed, 11 insertions(+), 52 deletions(-) delete mode 100644 yaml/other-archs/02_deployment.yaml diff --git a/README.md b/README.md index a9cd8b1..d16bb5e 100644 --- a/README.md +++ b/README.md @@ -65,18 +65,23 @@ Clustersecrets automates this. It keep track of any modification in your secret ## Requirements -Current version `0.0.10` is tested for Kubernetes >= 1.19 up to 1.27.3 -For ARM architectures use `_arm32` tag - +Current version `0.0.11` is tested for Kubernetes >= 1.19 up to 1.27.3 For older kubernetes (<1.19) use the image tag `0.0.6` in your helm values file. +architectures available (0.0.11): + +SHA256 ed12e8f3e630 | linux | 386 +SHA256 91b0285f5398 | linux | amd64 +SHA256 cad79c68cb8c | linux | s390x +SHA256 637f3be7850a | linux | arm64 + ## Install # Using the official helm chart ```bash helm repo add clustersecret https://charts.clustersecret.com/ -helm install clustersecret clustersecret/cluster-secret --version 0.4.0 -n clustersecret --create-namespace +helm install clustersecret clustersecret/cluster-secret --version 0.4.3 -n clustersecret --create-namespace ``` # with just kubectl @@ -123,18 +128,6 @@ Images are build and push on tag ('git tag') with Github Actions. You can find t https://quay.io/repository/clustersecret/clustersecret -## default archs : - -the following archetecures: - - - linux/386 - - linux/amd64 - -are under the image:tag : `quay.io/clustersecret/clustersecret:0.0.10` - -Alternative architecrues: - - ## Known bugs: - check this on issues tab diff --git a/yaml/02_deployment.yaml b/yaml/02_deployment.yaml index eb6f774..2131c30 100644 --- a/yaml/02_deployment.yaml +++ b/yaml/02_deployment.yaml @@ -19,7 +19,7 @@ spec: # - name: regcred containers: - name: clustersecret - image: quay.io/clustersecret/clustersecret:0.0.10 + image: quay.io/clustersecret/clustersecret:0.0.11 livenessProbe: httpGet: path: /healthz @@ -27,7 +27,7 @@ spec: periodSeconds: 120 env: - name: CLUSTER_SECRET_VERSION - value: "v0.0.10" + value: "v0.0.11" - name: REPLACE_EXISTING value: "false" # imagePullPolicy: Always diff --git a/yaml/other-archs/02_deployment.yaml b/yaml/other-archs/02_deployment.yaml deleted file mode 100644 index 2ce07da..0000000 --- a/yaml/other-archs/02_deployment.yaml +++ /dev/null @@ -1,34 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: clustersecret - namespace: clustersecret - labels: - app: clustersecret -spec: - matchLabels: - selector: - matchLabels: - app: clustersecret - template: - metadata: - labels: - app: clustersecret - spec: - serviceAccountName: clustersecret-account - # imagePullSecrets: - # - name: regcred - containers: - - name: clustersecret - image: quay.io/clustersecret/clustersecret:0.0.10-alt - livenessProbe: - httpGet: - path: /healthz - port: 8080 - # imagePullPolicy: Always - # Uncomment next lines for debug: - # command: - # - "kopf" - # - "run" - # - "/src/handlers.py" - # - "--verbose"