From 896b603a657105fbfddacc37eacbae558b6c5fbb Mon Sep 17 00:00:00 2001 From: Matt McFarland Date: Wed, 8 Feb 2023 12:44:35 -0500 Subject: [PATCH] Allow imageKey table name override via settings (#134) Co-authored-by: Tom Augspurger --- deployment/helm/deploy-values.template.yaml | 1 + .../helm/published/pctasks-server/templates/deployment.yaml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/deployment/helm/deploy-values.template.yaml b/deployment/helm/deploy-values.template.yaml index f3b7fa53..bee47bb8 100644 --- a/deployment/helm/deploy-values.template.yaml +++ b/deployment/helm/deploy-values.template.yaml @@ -50,6 +50,7 @@ pctasks: account_name: {{ tf.sa_account_name }} account_key: {{ tf.sa_account_key }} connection_string: {{ tf.sa_connection_string}} + image_key_table_name: "imagekeys" blob: account_url: {{ tf.sa_blob_account_url }} diff --git a/deployment/helm/published/pctasks-server/templates/deployment.yaml b/deployment/helm/published/pctasks-server/templates/deployment.yaml index 53c57871..b55690be 100644 --- a/deployment/helm/published/pctasks-server/templates/deployment.yaml +++ b/deployment/helm/published/pctasks-server/templates/deployment.yaml @@ -150,6 +150,8 @@ spec: value: "{{ .Values.pctasks.run.tables.account_name }}" - name: PCTASKS_RUN__TABLES_ACCOUNT_KEY value: "{{ .Values.pctasks.run.tables.account_key }}" + - name: PCTASKS_RUN__IMAGE_KEY_TABLE_NAME + value: "{{ .Values.pctasks.run.tables.image_key_table_name }}" ### Blobs - name: PCTASKS_RUN__BLOB_ACCOUNT_URL