Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
01529001
Commit
01529001
authored
Aug 18, 2016
by
Travis Cline
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify example container names
This encourages people from making container names depend on release names.
parent
3d2348c3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
charts.md
docs/charts.md
+1
-1
deployment.yaml
docs/examples/nginx/templates/deployment.yaml
+1
-1
post-install-job.yaml
docs/examples/nginx/templates/post-install-job.yaml
+1
-1
No files found.
docs/charts.md
View file @
01529001
...
@@ -483,7 +483,7 @@ spec:
...
@@ -483,7 +483,7 @@ spec:
spec
:
spec
:
restartPolicy
:
Never
restartPolicy
:
Never
containers
:
containers
:
-
name
:
{{
template "fullname" .
}}
-job
-
name
:
post-install
-job
image
:
"
alpine:3.3"
image
:
"
alpine:3.3"
command
:
[
"
/bin/sleep"
,
"
{{default
"
10" .Values.sleepyTime
}}
"
]
command
:
[
"
/bin/sleep"
,
"
{{default
"
10" .Values.sleepyTime
}}
"
]
...
...
docs/examples/nginx/templates/deployment.yaml
View file @
01529001
...
@@ -23,7 +23,7 @@ spec:
...
@@ -23,7 +23,7 @@ spec:
release
:
{{
.Release.Name | quote
}}
release
:
{{
.Release.Name | quote
}}
spec
:
spec
:
containers
:
containers
:
-
name
:
{{
template "fullname" .
}}
-
name
:
nginx
# Making image configurable is not necessary. Making imageTag configurable
# Making image configurable is not necessary. Making imageTag configurable
# is a nice option for the user. Especially in the strange cases like
# is a nice option for the user. Especially in the strange cases like
# nginx where the base distro is determined by the tag. Using :latest
# nginx where the base distro is determined by the tag. Using :latest
...
...
docs/examples/nginx/templates/post-install-job.yaml
View file @
01529001
...
@@ -25,7 +25,7 @@ spec:
...
@@ -25,7 +25,7 @@ spec:
# more conventional syntax: {{.restartPolicy | default "Never"}}
# more conventional syntax: {{.restartPolicy | default "Never"}}
restartPolicy
:
Never
restartPolicy
:
Never
containers
:
containers
:
-
name
:
{{
template "fullname" .
}}
-job
-
name
:
post-install
-job
image
:
"
alpine:3.3"
image
:
"
alpine:3.3"
# All we're going to do is sleep for a minute, then exit.
# All we're going to do is sleep for a minute, then exit.
command
:
[
"
/bin/sleep"
,
"
{{default
"
10" .Values.sleepyTime
}}
"
]
command
:
[
"
/bin/sleep"
,
"
{{default
"
10" .Values.sleepyTime
}}
"
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment