-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add step-certificates example values
- Loading branch information
1 parent
219af1e
commit 5cb7636
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
step-certificates: | ||
image: | ||
repository: cr.step.sm/smallstep/step-ca | ||
tag: 0.25.3-rc7 | ||
|
||
# bootstrap: | ||
# enabled: false | ||
# configmaps: false | ||
|
||
# inject: | ||
# enabled: false | ||
|
||
# existingSecrets: | ||
# enabled: true | ||
# ca: true | ||
# data: | ||
# ca.key: "/secrets/ca.key" # Example; adjust the path as needed | ||
# password: "/secrets/password" # Example; adjust the path as needed | ||
# root_ca_key: "/secrets/root_ca_key" # Example; adjust the path as needed | ||
|
||
# ca: | ||
# env: | ||
# - name: STEPDEBUG | ||
# value: "1" | ||
|
||
# ingress: | ||
# enabled: true | ||
# annotations: | ||
# nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | ||
# nginx.ingress.kubernetes.io/ssl-redirect: "false" | ||
# nginx.ingress.kubernetes.io/use-regex: "true" | ||
# nginx.ingress.kubernetes.io/enable-cors: "true" | ||
# nginx.ingress.kubernetes.io/cors-allow-origin: "local.domain" # Adjust the domain as needed | ||
# nginx.ingress.kubernetes.io/cors-expose-headers: "Replay-Nonce, Location" | ||
# ingressClassName: "nginx" | ||
# tls: | ||
# - hosts: | ||
# - "acme.local.domain" # Adjust the domain as needed | ||
# secretName: "ingress-cert" # Adjust the secret name as needed | ||
# hosts: | ||
# - host: "acme.local.domain" # Adjust the domain as needed | ||
# paths: | ||
# - "/version" | ||
# - "/roots.pem" | ||
# - "/root/(.*)" | ||
# - "/federation" | ||
# - "/provisioners(.*)" | ||
# - "/crl" | ||
# - "/acme/(.*)" | ||
|
||
# stepConfig: | ||
# enabled: true | ||
# dnsName: "acme.local.domain" # Adjust the domain as needed | ||
# additionalDNSNames: | ||
# - "localhost" | ||
# federatedRoots: | ||
# - "/home/step/certs/ca.crt" | ||
# # Add more paths for federated roots if needed | ||
|
||
# authority: | ||
# jwk: "/secrets/jwk_provisioner.json" # Adjust the path as needed | ||
# acme: | ||
# name: "keycloakteams" | ||
# dpop: | ||
# key: "/secrets/dpop_key.pem" # Adjust the path as needed | ||
# wireDomain: "local.domain" # Adjust the domain as needed | ||
# oidc: | ||
# clientId: "wireapp" | ||
# discoveryBaseUrl: "" | ||
# issuerUrl: "https://keycloak.example.com/auth/realms/master?client_id=wireapp" # URL to the oidc issuer | ||
# jwksUrl: "https://keycloak.example.com/auth/realms/master/protocol/openid-connect/certs" # URL where issuer publishes its JSON Web Key Set | ||
# x509: | ||
# organization: "local.domain" | ||
|
||
# existingCerts: | ||
# enabled: true | ||
# data: | ||
# ca.crt: "/certs/ca.crt" | ||
# root_ca.crt: "/certs/root_ca.crt'" | ||
# # Add cross certificates if available | ||
|
||
# caPassword: | ||
# enabled: true | ||
# password: "/secrets/password" |