-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/undefined-url
- Loading branch information
Showing
170 changed files
with
6,557 additions
and
2,841 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,71 @@ | ||
##### | ||
# INFISICAL K8 DEFAULT VALUES FILE | ||
# PLEASE REPLACE VALUES/EDIT AS REQUIRED | ||
##### | ||
|
||
nameOverride: "" | ||
|
||
frontend: | ||
enabled: true | ||
name: frontend | ||
podAnnotations: {} | ||
deploymentAnnotations: | ||
secrets.infisical.com/auto-reload: "true" | ||
replicaCount: 2 | ||
image: | ||
repository: infisical/frontend | ||
pullPolicy: Always | ||
tag: "latest" | ||
pullPolicy: Always | ||
kubeSecretRef: managed-secret-frontend | ||
service: | ||
# type of the frontend service | ||
type: ClusterIP | ||
# define the nodePort if service type is NodePort | ||
# nodePort: | ||
annotations: {} | ||
type: ClusterIP | ||
nodePort: "" | ||
|
||
frontendEnvironmentVariables: null | ||
|
||
backend: | ||
enabled: true | ||
name: backend | ||
podAnnotations: {} | ||
deploymentAnnotations: | ||
secrets.infisical.com/auto-reload: "true" | ||
replicaCount: 2 | ||
image: | ||
repository: infisical/backend | ||
pullPolicy: Always | ||
tag: "latest" | ||
pullPolicy: Always | ||
kubeSecretRef: managed-backend-secret | ||
service: | ||
annotations: {} | ||
type: ClusterIP | ||
nodePort: "" | ||
|
||
backendEnvironmentVariables: null | ||
|
||
## Mongo DB persistence | ||
mongodb: | ||
name: mongodb | ||
podAnnotations: {} | ||
image: | ||
repository: mongo | ||
pullPolicy: IfNotPresent | ||
tag: "latest" | ||
service: | ||
annotations: {} | ||
enabled: true | ||
persistence: | ||
enabled: false | ||
|
||
# By default the backend will be connected to a Mongo instance in the cluster. | ||
# However, it is recommended to add a managed document DB connection string because the DB instance in the cluster does not have persistence yet ( data will be deleted on next deploy). | ||
# Learn about connection string type here https://www.mongodb.com/docs/manual/reference/connection-string/ | ||
mongodbConnection: {} | ||
# externalMongoDBConnectionString: <> | ||
## By default the backend will be connected to a Mongo instance within the cluster | ||
## However, it is recommended to add a managed document DB connection string for production-use (DBaaS) | ||
## Learn about connection string type here https://www.mongodb.com/docs/manual/reference/connection-string/ | ||
## e.g. "mongodb://<user>:<pass>@<host>:<port>/<database-name>" | ||
mongodbConnection: | ||
externalMongoDBConnectionString: "" | ||
|
||
ingress: | ||
enabled: true | ||
annotations: | ||
kubernetes.io/ingress.class: "nginx" | ||
hostName: gamma.infisical.com # replace with your domain | ||
frontend: | ||
# cert-manager.io/issuer: letsencrypt-nginx | ||
hostName: gamma.infisical.com ## <- Replace with your own domain | ||
frontend: | ||
path: / | ||
pathType: Prefix | ||
backend: | ||
path: /api | ||
pathType: Prefix | ||
tls: [] | ||
|
||
|
||
## Complete Ingress example | ||
# ingress: | ||
# enabled: true | ||
# annotations: | ||
# kubernetes.io/ingress.class: "nginx" | ||
# cert-manager.io/issuer: letsencrypt-nginx | ||
# hostName: k8.infisical.com | ||
# frontend: | ||
# path: / | ||
# pathType: Prefix | ||
# backend: | ||
# path: /api | ||
# pathType: Prefix | ||
# tls: | ||
# - secretName: letsencrypt-nginx | ||
# hosts: | ||
# - k8.infisical.com | ||
|
||
### | ||
### YOU MUST FILL IN ALL SECRETS BELOW | ||
### | ||
backendEnvironmentVariables: {} | ||
tls: | ||
[] | ||
# - secretName: letsencrypt-nginx | ||
# hosts: | ||
# - infisical.local | ||
|
||
frontendEnvironmentVariables: {} | ||
mailhog: | ||
enabled: false |
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
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
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
Oops, something went wrong.