Skip to content

Commit 05aa1e2

Browse files
authored
Add files via upload
1 parent c0b5809 commit 05aa1e2

2 files changed

Lines changed: 68 additions & 0 deletions

File tree

linux/sample-helm-chart/Chart.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: v2
2+
name: mssql-latest
3+
description: A Helm chart for Kubernetes
4+
5+
# A chart can be either an 'application' or a 'library' chart.
6+
#
7+
# Application charts are a collection of templates that can be packaged into versioned archives
8+
# to be deployed.
9+
#
10+
# Library charts provide useful utilities or functions for the chart developer. They're included as
11+
# a dependency of application charts to inject those utilities and functions into the rendering
12+
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
13+
type: application
14+
15+
# This is the chart version. This version number should be incremented each time you make changes
16+
# to the chart and its templates, including the app version.
17+
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18+
version: 0.1.0
19+
20+
# This is the version number of the application being deployed. This version number should be
21+
# incremented each time you make changes to the application. Versions are not expected to
22+
# follow Semantic Versioning. They should reflect the version the application is using.
23+
appVersion: 1.16.0
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Default values for mssql-latest.
2+
# This is a YAML-formatted file.
3+
# Declare variables to be passed into your templates.
4+
5+
replicas: 1
6+
7+
image:
8+
repository: mcr.microsoft.com/mssql/server
9+
pullPolicy: IfNotPresent
10+
# Overrides the image tag whose default is the chart appVersion.
11+
tag: "2019-latest"
12+
13+
ACCEPT_EULA:
14+
value: "y"
15+
MSSQL_PID:
16+
value: "Developer"
17+
MSSQL_AGENT_ENABLED:
18+
value: "true"
19+
hostname: mssqllatest
20+
sa_password: "Toughpass1!"
21+
containers:
22+
ports:
23+
containerPort: 1433
24+
25+
podAnnotations: {}
26+
27+
podSecurityContext:
28+
fsGroup: 10001
29+
30+
service:
31+
type: LoadBalancer
32+
port: 1433
33+
34+
pvc:
35+
StorageClass: "azure-disk"
36+
userdbaccessMode: ReadWriteOnce
37+
userdbsize: 5Gi
38+
userlogaccessMode: ReadWriteOnce
39+
userlogsize: 5Gi
40+
tempdbaccessMode: ReadWriteOnce
41+
tempsize: 2Gi
42+
mssqldataaccessMode: ReadWriteOnce
43+
mssqldbsize: 2Gi
44+
45+

0 commit comments

Comments
 (0)