Skip to content

Commit

Permalink
Correct brigade_project#values.yml secrets
Browse files Browse the repository at this point in the history
The secrets are contained in the second argument (project), not the first (brigade_event).
  • Loading branch information
Ben Limmer committed Dec 21, 2017
1 parent 17fb624 commit a78e960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/brigade-project/values.yaml
Expand Up @@ -34,9 +34,9 @@ github: {}
#
# In JS, do this:
#
# events.push = function(e) {
# events.push = function(e, p) {
# j = new Job("example")
# j.env= {"MY_ENV_VAR", e.secrets.myVar}
# j.env= {"MY_ENV_VAR", p.secrets.myVar}
# }
#
# And here, add this:
Expand Down

0 comments on commit a78e960

Please sign in to comment.