8000 fix(docs): Update Helm doc by alexolivier · Pull Request #2278 · cerbos/cerbos · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(docs): Update Helm doc #2278

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/modules/ROOT/pages/installation/helm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,13 @@ cerbos:
updatePollInterval: 60s
# Credentials used to login to the remote GitHub repo. We are using an environment variable mounted from the secret we created earlier.
https:
username: ${GITHUB_TOKEN} <2>
password: "" <3>
username: "cerbos" <2>
password: "${GITHUB_TOKEN}" <3>
----
<1> Create an environment variable from the secret we created
<2> Use the environment variable containing the PAT as the username to login to GitHub
<3> Password should be empty when using a PAT to authenticate to GitHub
<2> Username should be set to a string value (can be any value if using GitHub)
<3> Use the environment variable containing the PAT as the password to login to GitHub


* Deploy Cerbos using the Helm chart
+
Expand Down
0