Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

SQL Server 2017 Linux HELM Chart #3246

Merged
merged 16 commits into from
Feb 2, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@
## Installing the Chart
You can install the chart with the release name `mymssql` as below.
```console
$ helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
$ helm install --name mymssql incubator/mssql-linux --set acceptEula.value=Y --set edition.value=Developer
$ helm repo add stable https://kubernetes-charts.storage.googleapis.com/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to add the stable repo.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed. Thanks

$ helm install --name mymssql stable/mssql-linux --set acceptEula.value=Y --set edition.value=Developer
```
> Note - If you do not specify a name, helm will select a name for you.

Original file line number Diff line number Diff line change
@@ -34,15 +34,16 @@ spec:
name: {{ template "mssql.fullname" . }}-secret
key: sapassword
ports:
- containerPort: 1433
- name: db
containerPort: 1433
livenessProbe:
tcpSocket:
port: 1433
port: db
initialDelaySeconds: {{ .Values.livenessprobe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessprobe.periodSeconds }}
readinessProbe:
tcpSocket:
port: 1433
port: db
initialDelaySeconds: {{ .Values.readinessprobe.initialDelaySeconds }}
periodSeconds: {{ .Values.readinessprobe.periodSeconds }}
resources:
Original file line number Diff line number Diff line change
@@ -10,10 +10,10 @@ metadata:
spec:
type: {{ .Values.service.type }}
ports:
- port: 1433
targetPort: 1433
protocol: TCP
name: {{ .Values.service.name }}
- name: db
port: 1433
targetPort: db
protocol: TCP
selector:
app: {{ template "mssql.name" . }}
release: {{ .Release.Name }}
Original file line number Diff line number Diff line change
@@ -9,7 +9,6 @@ image:
tag: 2017-CU3
pullPolicy: IfNotPresent
service:
name: mssqlsrvr
type: ClusterIP
livenessprobe:
initialDelaySeconds: 15