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
dbdb4df5
Commit
dbdb4df5
authored
Aug 18, 2016
by
Matt Butcher
Committed by
GitHub
Aug 18, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1075 from tmc/simplify_example_names
simplify example container names
parents
3d2348c3
01529001
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 @
dbdb4df5
...
...
@@ -483,7 +483,7 @@ spec:
spec
:
restartPolicy
:
Never
containers
:
-
name
:
{{
template "fullname" .
}}
-job
-
name
:
post-install
-job
image
:
"
alpine:3.3"
command
:
[
"
/bin/sleep"
,
"
{{default
"
10" .Values.sleepyTime
}}
"
]
...
...
docs/examples/nginx/templates/deployment.yaml
View file @
dbdb4df5
...
...
@@ -23,7 +23,7 @@ spec:
release
:
{{
.Release.Name | quote
}}
spec
:
containers
:
-
name
:
{{
template "fullname" .
}}
-
name
:
nginx
# Making image configurable is not necessary. Making imageTag configurable
# 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
...
...
docs/examples/nginx/templates/post-install-job.yaml
View file @
dbdb4df5
...
...
@@ -25,7 +25,7 @@ spec:
# more conventional syntax: {{.restartPolicy | default "Never"}}
restartPolicy
:
Never
containers
:
-
name
:
{{
template "fullname" .
}}
-job
-
name
:
post-install
-job
image
:
"
alpine:3.3"
# All we're going to do is sleep for a minute, then exit.
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