Skip to content

Commit 6d830fa

Browse files
committed
labels
1 parent a94c976 commit 6d830fa

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

linux/sample-helm-chart-statefulset-deployment/questions.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
questions:
22
- variable: ACCEPT_EULA
3-
label: Accept the SQL Server EULA
4-
description: Accepts the SQL Server EULA
5-
type: enum
6-
options:
7-
- "Yes"
3+
label: ACCEPT_EULA
4+
description: Accepts the SQL Server EULA (any value confirms acceptance)
5+
default: "Yes"
86
group: SQL Server Options
97

108
- variable: SQL Server Edition aka. MSSQL_PID

linux/sample-helm-chart-statefulset-deployment/templates/secret.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Secret
33
metadata:
44
name: mssql-secret
55
labels:
6-
{{- include "mssql-latest.labels" . | nindent 4 }}
6+
{{- include "sql-statefull-deploy.labels" . | nindent 4 }}
77
type: Opaque
88
data:
99
sa_password : {{ .Values.MSSQL_SA_PASSWORD | b64enc | quote}}

linux/sample-helm-chart-statefulset-deployment/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ image:
1010
# Overrides the image tag whose default is the chart appVersion.
1111
tag: "2019-latest"
1212

13-
ACCEPT_EULA: Y
13+
ACCEPT_EULA: "Yes"
1414
MSSQL_PID: Developer
1515
MSSQL_AGENT_ENABLED: false
1616

linux/sample-helm-chart/templates/secret.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ apiVersion: v1
22
kind: Secret
33
metadata:
44
name: mssql-secret
5+
labels:
6+
{{- include "mssql-latest.labels" . | nindent 4 }}
57
type: Opaque
68
data:
79
sa_password : {{ .Values.sa_password | b64enc | quote}}

0 commit comments

Comments
 (0)