File tree Expand file tree Collapse file tree
linux/sample-helm-chart-statefulset-deployment Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Patterns to ignore when building packages.
2+ # This supports shell glob matching, relative path matching, and
3+ # negation (prefixed with !). Only one pattern per line.
4+ .DS_Store
5+ # Common VCS dirs
6+ .git/
7+ .gitignore
8+ .bzr/
9+ .bzrignore
10+ .hg/
11+ .hgignore
12+ .svn/
13+ # Common backup files
14+ *.swp
15+ *.bak
16+ *.tmp
17+ *.orig
18+ *~
19+ # Various IDEs
20+ .project
21+ .idea/
22+ *.tmproj
23+ .vscode/
Original file line number Diff line number Diff line change 1+ apiVersion : v2
2+ name : sql-statefull-deploy
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
Original file line number Diff line number Diff line change 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 : 3
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 : " false"
19+
20+ containers :
21+ ports :
22+ containerPort : 1433
23+
24+ podAnnotations : {}
25+
26+ podSecurityContext :
27+ fsGroup : 10001
28+
29+ service :
30+ port : 1433
You can’t perform that action at this time.
0 commit comments