Skip to content
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
16 changes: 8 additions & 8 deletions helm/optio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -337,23 +337,23 @@ github:
# Unquoted large integers are silently truncated by YAML float parsing.
# Correct: id: "123456"
# Wrong: id: 123456
id: "" # App ID (quoted string)
clientId: "" # Client ID (for user OAuth login flow)
clientSecret: "" # Client secret (for user OAuth login flow)
installationId: "" # Installation ID (quoted string)
privateKey: "" # PEM private key (for server-side installation tokens)
# id: "" # App ID (quoted string)
# clientId: "" # Client ID (for user OAuth login flow)
# clientSecret: "" # Client secret (for user OAuth login flow)
# installationId: "" # Installation ID (quoted string)
# privateKey: "" # PEM private key (for server-side installation tokens)
# Git commit author for agent commits. Use the GitHub App's bot identity
# so commits show properly in the GitHub UI.
# Format: "{app-name}[bot]" and "{app-id}+{app-slug}[bot]@users.noreply.github.com"
# Find these on your app's settings page at github.com/settings/apps/{slug}
botName: "" # e.g. "my-optio-app[bot]"
botEmail: "" # e.g. "123456+my-optio-app[bot]@users.noreply.github.com"
# botName: "" # e.g. "my-optio-app[bot]"
# botEmail: "" # e.g. "123456+my-optio-app[bot]@users.noreply.github.com"
# Use an existing K8s Secret instead of the values above. The secret must
# contain keys: GITHUB_APP_ID, GITHUB_APP_CLIENT_ID, GITHUB_APP_CLIENT_SECRET,
# GITHUB_APP_INSTALLATION_ID, GITHUB_APP_PRIVATE_KEY.
# Optionally also: GITHUB_APP_BOT_NAME, GITHUB_APP_BOT_EMAIL.
# Useful with external-secrets-operator, sealed-secrets, or vault-injector.
existingSecret: ""
existingSecret: "github-app-config"

# ──────────────────────────────────────────────────────────────────────────────
# Secrets encryption
Expand Down
Loading