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
2b0a6128
Commit
2b0a6128
authored
May 31, 2017
by
Nikhil Manchanda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(docs): Updated non-working example in 'Using Helm' documentation
Closes #2527
parent
da383b35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
using_helm.md
docs/using_helm.md
+4
-3
No files found.
docs/using_helm.md
View file @
2b0a6128
...
...
@@ -215,12 +215,13 @@ You can then override any of these settings in a YAML formatted file,
and then pass that file during installation.
```
console
$
echo
'
mariadbUser: user0
'
>
config.yaml
$
echo
'
{mariadbUser: user0, mariadbDatabase: user0db}
'
>
config.yaml
$
helm
install
-f
config.yaml stable/mariadb
```
The above will set the default MariaDB user to
`user0`
, but accept all
the rest of the defaults for that chart.
The above will create a default MariaDB user with the name
`user0`
, and
grant this user access to a newly created
`user0db`
database, but will
accept all the rest of the defaults for that chart.
There are two ways to pass configuration data during install:
...
...
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