Skip to content

Commit 39659b5

Browse files
committed
adding SSL_CERT_FILE variables
1 parent 032b3f9 commit 39659b5

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: netapp-connector
3-
version: 2.1.6
3+
version: 2.1.7
44
description: A Helm chart for deploying netapp-connector as a StatefulSet with persistent storage
5-
appVersion: "2.1.1"
5+
appVersion: "2.1.2"
66
type: application

charts/netapp-copilot-connector/templates/configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ data:
1414
PROXY_PASSWORD: {{ .Values.main.env.PROXY_PASSWORD | quote }}
1515
GRAPH_VERIFY_SSL: {{ .Values.main.env.GRAPH_VERIFY_SSL | quote }}
1616
GRAPH_TIMEOUT: {{ .Values.main.env.GRAPH_TIMEOUT | quote }}
17-
17+
SSL_CERT_FILE: {{ .Values.main.env.SSL_CERT_FILE | quote }}

charts/netapp-copilot-connector/templates/statefulset.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ spec:
6262
configMapKeyRef:
6363
name: {{ .Values.main.name }}
6464
key: GRAPH_VERIFY_SSL
65+
- name: SSL_CERT_FILE
66+
valueFrom:
67+
configMapKeyRef:
68+
name: {{ .Values.main.name }}
69+
key: SSL_CERT_FILE
6570
- name: NETAPP_CONNECTOR_LICENSE
6671
valueFrom:
6772
configMapKeyRef:

charts/netapp-copilot-connector/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ main:
55
replicaCount: 1
66
image:
77
repository: ghcr.io/netapp/netapp-copilot-connector
8-
tag: 2.1.1
8+
tag: 2.1.2
99
pullPolicy: Always
1010
service:
1111
type: ClusterIP
@@ -19,6 +19,7 @@ main:
1919
PROXY_PASSWORD: ""
2020
GRAPH_VERIFY_SSL: ""
2121
GRAPH_TIMEOUT: ""
22+
SSL_CERT_FILE: ""
2223
persistence:
2324
enabled: true
2425
accessMode: ReadWriteOnce

0 commit comments

Comments
 (0)