From d60f2eded90b35641f575c30e65dd60f5dacdd03 Mon Sep 17 00:00:00 2001 From: Ming Wang Date: Tue, 16 Jul 2024 15:23:50 -0400 Subject: [PATCH] test --- .github/workflows/push-oci.yml | 4 ++-- charts/cryostat/README.md | 2 -- charts/cryostat/templates/db_secret.yaml | 11 ----------- 3 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 charts/cryostat/templates/db_secret.yaml diff --git a/.github/workflows/push-oci.yml b/.github/workflows/push-oci.yml index 9fede2e3..7458c17c 100644 --- a/.github/workflows/push-oci.yml +++ b/.github/workflows/push-oci.yml @@ -21,8 +21,8 @@ jobs: feth-depth: 0 - name: Configure Git run: | - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor }}@users.noreply.github.com" + git config user.name ${{ github.actor }} + git config user.email ${{ github.actor }}@users.noreply.github.com - name: Set up Helm uses: azure/setup-helm@v4 with: diff --git a/charts/cryostat/README.md b/charts/cryostat/README.md index 0af918b9..3e88b052 100644 --- a/charts/cryostat/README.md +++ b/charts/cryostat/README.md @@ -143,5 +143,3 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op | `pvc.accessModes` | Access mode for the persistentVolumeClaim. See: [Access Modes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) | `["ReadWriteOnce"]` | | `pvc.selector` | Selector for the persistentVolumeClaim. See: [Selector](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) | `{}` | | `pvc.storageClassName` | The name of the StorageClass for the persistentVolumeClaim. See: [Class](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#persistentvolumeclaims) | `undefined` | - -*changing chart* diff --git a/charts/cryostat/templates/db_secret.yaml b/charts/cryostat/templates/db_secret.yaml deleted file mode 100644 index 26df5339..00000000 --- a/charts/cryostat/templates/db_secret.yaml +++ /dev/null @@ -1,11 +0,0 @@ -{{- if empty .Values.core.databaseSecretName -}} -apiVersion: v1 -kind: Secret -metadata: - name: {{ .Release.Name }}-db -type: Opaque -immutable: true -data: - ENCRYPTION_KEY: {{ include "cryostat.databaseEncryptionKey" . }} - CONNECTION_KEY: {{ include "cryostat.databaseConnectionKey" . }} -{{- end -}}