Big Bang values.yaml
π
domainπ
Type: string
"dev.bigbang.mil"
Description: Domain used for BigBang created exposed services, can be overridden by individual packages.
offlineπ
Type: bool
false
Description: (experimental) Toggle sourcing from external repos. All this does right now is toggle GitRepositories, it is not fully functional
helmRepositoriesπ
Type: list
[]
Description: List of Helm repositories/credentials to pull helm charts from. OCI Type: Must specify username/password or existingSecret if repository requires auth. Using βprivate-registryβ for existingSecret will reuse credentials from registryCredentials above. Default Type: Must specify existingSecret with auth - see https://fluxcd.io/flux/components/source/helmrepositories/#secret-reference for details on secret data required.
registryCredentialsπ
Type: object
email: ''
password: ''
registry: registry1.dso.mil
username: ''
Description: Single set of registry credentials used to pull all images deployed by BigBang.
openshiftπ
Type: bool
false
Description: Multiple sets of registry credentials used to pull all images deployed by BigBang. Credentials will only be created when a valid combination exists, registry, username, and password (email is optional) Or a list of registires: - registry: registry1.dso.mil username: ββ password: ββ email: ββ - registry: registry.dso.mil username: ββ password: ββ email: ββ Openshift Container Platform Feature Toggle
gitπ
Type: object
credentials:
caFile: ''
knownHosts: ''
password: ''
privateKey: ''
publicKey: ''
username: ''
existingSecret: ''
Description: Git credential settings for accessing private repositories Order of precedence is: 1. existingSecret 2. http credentials (username/password/caFile) 3. ssh credentials (privateKey/publicKey/knownHosts)
git.existingSecretπ
Type: string
""
Description: Existing secret to use for git credentials, must be in the appropriate format: https://toolkit.fluxcd.io/components/source/gitrepositories/#https-authentication
git.credentialsπ
Type: object
caFile: ''
knownHosts: ''
password: ''
privateKey: ''
publicKey: ''
username: ''
Description: Chart created secrets with user defined values
git.credentials.usernameπ
Type: string
""
Description: HTTP git credentials, both username and password must be provided
git.credentials.caFileπ
Type: string
""
Description: HTTPS certificate authority file. Required for any repo with a self signed certificate
git.credentials.privateKeyπ
Type: string
""
Description: SSH git credentials, privateKey, publicKey, and knownHosts must be provided
ssoπ
Type: object
certificateAuthority:
cert: ''
secretName: tls-ca-sso
name: SSO
oidc:
authorization: '{{ .Values.sso.url }}/protocol/openid-connect/auth'
claims:
email: email
groups: groups
name: name
username: preferred_username
endSession: '{{ .Values.sso.url }}/protocol/openid-connect/logout'
jwks: ''
jwksUri: '{{ .Values.sso.url }}/protocol/openid-connect/certs'
token: '{{ .Values.sso.url }}/protocol/openid-connect/token'
userinfo: '{{ .Values.sso.url }}/protocol/openid-connect/userinfo'
saml:
entityDescriptor: '{{ .Values.sso.url }}/protocol/saml/descriptor'
metadata: ''
service: '{{ .Values.sso.url }}/protocol/saml'
url: https://login.dso.mil/auth/realms/baby-yoda
Description: Global SSO values used for BigBang deployments when sso is enabled
sso.nameπ
Type: string
"SSO"
Description: Name of the identity provider. This is used by some packages as the SSO login label.
sso.urlπ
Type: string
"https://login.dso.mil/auth/realms/baby-yoda"
Description: Base URL for the identity provider. For OIDC, this is the issuer. For SAML this is the entityID.
sso.certificateAuthorityπ
Type: object
cert: ''
secretName: tls-ca-sso
Description: Certificate authority for the identity providerβs certificates
sso.certificateAuthority.certπ
Type: string
""
Description: The certificate authority public certificate in .pem format. Populating this will create a secret in each namespace that enables SSO.
sso.certificateAuthority.secretNameπ
Type: string
"tls-ca-sso"
Description: The secret name to use for the certificate authority. Can be manually populated if cert is blank.
sso.saml.entityDescriptorπ
Type: string
"{{ .Values.sso.url }}/protocol/saml/descriptor"
Description: SAML entityDescriptor (metadata) path
sso.saml.serviceπ
Type: string
"{{ .Values.sso.url }}/protocol/saml"
Description: SAML SSO Service path
sso.saml.metadataπ
Type: string
""
Description: Literal SAML XML metadata retrieved from {{ .Values.sso.saml.entityDescriptor }}
. Required for SSO in Nexus, Twistlock, or Sonarqube.
sso.oidcπ
Type: object
authorization: '{{ .Values.sso.url }}/protocol/openid-connect/auth'
claims:
email: email
groups: groups
name: name
username: preferred_username
endSession: '{{ .Values.sso.url }}/protocol/openid-connect/logout'
jwks: ''
jwksUri: '{{ .Values.sso.url }}/protocol/openid-connect/certs'
token: '{{ .Values.sso.url }}/protocol/openid-connect/token'
userinfo: '{{ .Values.sso.url }}/protocol/openid-connect/userinfo'
Description: OIDC endpoints can be retrieved from {{ .Values.sso.url }}/.well-known/openid-configuration
sso.oidc.authorizationπ
Type: string
"{{ .Values.sso.url }}/protocol/openid-connect/auth"
Description: OIDC authorization path
sso.oidc.endSessionπ
Type: string
"{{ .Values.sso.url }}/protocol/openid-connect/logout"
Description: OIDC logout / end session path
sso.oidc.jwksUriπ
Type: string
"{{ .Values.sso.url }}/protocol/openid-connect/certs"
Description: OIDC JSON Web Key Set (JWKS) path
sso.oidc.tokenπ
Type: string
"{{ .Values.sso.url }}/protocol/openid-connect/token"
Description: OIDC token path
sso.oidc.userinfoπ
Type: string
"{{ .Values.sso.url }}/protocol/openid-connect/userinfo"
Description: OIDC user information path
sso.oidc.jwksπ
Type: string
""
Description: Literal OIDC JWKS data retrieved from JWKS Uri. Only needed if jwsksUri
is not defined.
sso.oidc.claimsπ
Type: object
email: email
groups: groups
name: name
username: preferred_username
Description: Identity provider claim names that store metadata about the authenticated user.
sso.oidc.claims.emailπ
Type: string
"email"
Description: IdPβs claim name used for the userβs email address.
sso.oidc.claims.nameπ
Type: string
"name"
Description: IdPβs claim name used for the userβs full name
sso.oidc.claims.usernameπ
Type: string
"preferred_username"
Description: IdPβs claim name used for the username
sso.oidc.claims.groupsπ
Type: string
"groups"
Description: IdPβs claim name used for the userβs groups or roles
fluxπ
Type: object
install:
remediation:
retries: -1
interval: 2m
rollback:
cleanupOnFail: true
timeout: 10m
test:
enable: false
timeout: 10m
upgrade:
cleanupOnFail: true
remediation:
remediateLastFailure: true
retries: 3
Description: (Advanced) Flux reconciliation parameters. The default values provided will be sufficient for the majority of workloads.
networkPoliciesπ
Type: object
controlPlaneCidr: 0.0.0.0/0
enabled: true
nodeCidr: ''
vpcCidr: 0.0.0.0/0
Description: Global NetworkPolicies settings
networkPolicies.enabledπ
Type: bool
true
Description: Toggle all package NetworkPolicies, can disable specific packages with package.values.networkPolicies.enabled
networkPolicies.controlPlaneCidrπ
Type: string
"0.0.0.0/0"
Description: Control Plane CIDR, defaults to 0.0.0.0/0, use kubectl get endpoints -n default kubernetes
to get the CIDR range needed for your cluster Must be an IP CIDR range (x.x.x.x/x - ideally with /32 for the specific IP of a single endpoint, broader range for multiple masters/endpoints) Used by package NetworkPolicies to allow Kube API access
networkPolicies.nodeCidrπ
Type: string
""
Description: Node CIDR, defaults to allowing β10.0.0.0/8β β172.16.0.0/12β β192.168.0.0/16β β100.64.0.0/10β networks. use kubectl get nodes -owide
and review the INTERNAL-IP
column to derive CIDR range. Must be an IP CIDR range (x.x.x.x/x - ideally a /16 or /24 to include multiple IPs)
networkPolicies.vpcCidrπ
Type: string
"0.0.0.0/0"
Description: VPC CIDR, defaults to 0.0.0.0/0 In a production environment, it is recommended to setup a Private Endpoint for your AWS services like KMS or S3. Please review https://docs.aws.amazon.com/kms/latest/developerguide/kms-vpc-endpoint.html to setup routing to AWS services that never leave the AWS network. Once created update networkPolicies.vpcCidr
to match the CIDR of your VPC so Vault will be able to reach your VPCs DNS and new KMS endpoint.
imagePullPolicyπ
Type: string
"IfNotPresent"
Description: Global ImagePullPolicy value for all packages Permitted values are: None, Always, IfNotPresent
istioCore.statusπ
Type: string
"alpha"
istioCore.enabledπ
Type: bool
false
Description: Toggle deployment of Istio (helm deployment of istio-base and istiod)
istioCore.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
istioCore.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/istio-core.git"
istioCore.git.pathπ
Type: string
"./chart"
istioCore.git.branchπ
Type: string
"main"
istioCore.helmRepo.repoNameπ
Type: string
"registry1"
istioCore.helmRepo.chartNameπ
Type: string
"istio-core"
istioCore.valuesπ
Type: object
istiod:
pilot:
env:
ENABLE_NATIVE_SIDECARS: 'true'
Description: Values to passthrough to the istiod chart
istioCore.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Istio Gateway Package
istioCore.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
istioGateway.statusπ
Type: string
"alpha"
istioGateway.enabledπ
Type: bool
false
istioGateway.sourceTypeπ
Type: string
"git"
istioGateway.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/istio-gateway.git"
istioGateway.git.pathπ
Type: string
"./chart"
istioGateway.git.branchπ
Type: string
"main"
istioGateway.helmRepo.repoNameπ
Type: string
"registry1"
istioGateway.helmRepo.chartNameπ
Type: string
"istio-gateway"
istioGateway.valuesπ
Type: object
{}
istioGateway.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Istio Gateway Package
istioGateway.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md The istioGateway package supports advanced postRenderer definitions. If an array of postRenderers is provided, the postRenderers will be applied to all gateways. If a map of postRenderers is provided, the postRenderers will be applied only to their respective gateways. The map key must match the gateway name for the postRenderers to be applied to that gateway. You cannot mix array and map postRenderers.
istio.enabledπ
Type: bool
true
Description: Toggle deployment of Istio.
istio.mtls.modeπ
Type: string
"STRICT"
Description: STRICT = Allow only mutual TLS traffic, PERMISSIVE = Allow both plain text and mutual TLS traffic
istio.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
istio.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/istio-controlplane.git"
istio.git.pathπ
Type: string
"./chart"
istio.git.tagπ
Type: string
"1.23.5-bb.1"
istio.helmRepo.repoNameπ
Type: string
"registry1"
istio.helmRepo.chartNameπ
Type: string
"istio"
istio.helmRepo.tagπ
Type: string
"1.23.5-bb.1"
istio.enterpriseπ
Type: bool
false
Description: Tetrate Istio Distribution - Tetrate provides FIPs verified Istio and Envoy software and support, validated through the FIPs Boring Crypto module. Find out more from Tetrate - https://www.tetrate.io/tetrate-istio-subscription
istio.ingressGateways.public-ingressgateway.typeπ
Type: string
"LoadBalancer"
istio.ingressGateways.public-ingressgateway.kubernetesResourceSpecπ
Type: object
{}
istio.gateways.public.ingressGatewayπ
Type: string
"public-ingressgateway"
istio.gateways.public.hosts[0]π
Type: string
"*.{{ .Values.domain }}"
istio.gateways.public.autoHttpRedirectπ
Type: object
enabled: true
Description: Controls default HTTP/8080 server entry with HTTP to HTTPS Redirect.
istio.gateways.public.tls.keyπ
Type: string
""
istio.gateways.public.tls.certπ
Type: string
""
istio.gateways.public.tls.minProtocolVersionπ
Type: string
""
istio.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Istio Package
istio.valuesπ
Type: object
{}
Description: Values to passthrough to the istio-controlplane chart: https://repo1.dso.mil/big-bang/product/packages/istio-controlplane.git
istio.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
istioOperator.enabledπ
Type: bool
true
Description: Toggle deployment of Istio Operator.
istioOperator.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
istioOperator.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/istio-operator.git"
istioOperator.git.pathπ
Type: string
"./chart"
istioOperator.git.tagπ
Type: string
"1.23.5-bb.0"
istioOperator.helmRepo.repoNameπ
Type: string
"registry1"
istioOperator.helmRepo.chartNameπ
Type: string
"istio-operator"
istioOperator.helmRepo.tagπ
Type: string
"1.23.5-bb.0"
istioOperator.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Istio Operator Package
istioOperator.valuesπ
Type: object
{}
Description: Values to passthrough to the istio-operator chart: https://repo1.dso.mil/big-bang/product/packages/istio-operator.git
istioOperator.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
jaeger.enabledπ
Type: bool
false
Description: Toggle deployment of Jaeger.
jaeger.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
jaeger.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/jaeger.git"
jaeger.git.pathπ
Type: string
"./chart"
jaeger.git.tagπ
Type: string
"2.57.0-bb.6"
jaeger.helmRepo.repoNameπ
Type: string
"registry1"
jaeger.helmRepo.chartNameπ
Type: string
"jaeger"
jaeger.helmRepo.tagπ
Type: string
"2.57.0-bb.6"
jaeger.fluxπ
Type: object
install:
crds: CreateReplace
upgrade:
crds: CreateReplace
Description: Flux reconciliation overrides specifically for the Jaeger Package
jaeger.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
jaeger.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Jaeger on and off
jaeger.sso.client_idπ
Type: string
""
Description: OIDC Client ID to use for Jaeger
jaeger.sso.client_secretπ
Type: string
""
Description: OIDC Client Secret to use for Jaeger
jaeger.valuesπ
Type: object
{}
Description: Values to pass through to Jaeger chart: https://repo1.dso.mil/big-bang/product/packages/jaeger.git
jaeger.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
kiali.enabledπ
Type: bool
true
Description: Toggle deployment of Kiali.
kiali.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
kiali.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/kiali.git"
kiali.git.pathπ
Type: string
"./chart"
kiali.git.tagπ
Type: string
"2.6.0-bb.0"
kiali.helmRepo.repoNameπ
Type: string
"registry1"
kiali.helmRepo.chartNameπ
Type: string
"kiali"
kiali.helmRepo.tagπ
Type: string
"2.6.0-bb.0"
kiali.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Kiali Package
kiali.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
kiali.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Kiali on and off
kiali.sso.client_idπ
Type: string
""
Description: OIDC Client ID to use for Kiali
kiali.sso.client_secretπ
Type: string
""
Description: OIDC Client Secret to use for Kiali
kiali.valuesπ
Type: object
{}
Description: Values to pass through to Kiali chart: https://repo1.dso.mil/big-bang/product/packages/kiali
kiali.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
clusterAuditor.enabledπ
Type: bool
false
Description: Toggle deployment of Cluster Auditor.
clusterAuditor.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
clusterAuditor.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/cluster-auditor.git"
clusterAuditor.git.pathπ
Type: string
"./chart"
clusterAuditor.git.tagπ
Type: string
"1.5.0-bb.22"
clusterAuditor.helmRepo.repoNameπ
Type: string
"registry1"
clusterAuditor.helmRepo.chartNameπ
Type: string
"cluster-auditor"
clusterAuditor.helmRepo.tagπ
Type: string
"1.5.0-bb.22"
clusterAuditor.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Cluster Auditor Package
clusterAuditor.valuesπ
Type: object
{}
Description: Values to passthrough to the cluster auditor chart: https://repo1.dso.mil/big-bang/product/packages/cluster-auditor.git
clusterAuditor.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
gatekeeper.enabledπ
Type: bool
false
Description: Toggle deployment of OPA Gatekeeper.
gatekeeper.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
gatekeeper.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/policy.git"
gatekeeper.git.pathπ
Type: string
"./chart"
gatekeeper.git.tagπ
Type: string
"3.18.2-bb.4"
gatekeeper.helmRepo.repoNameπ
Type: string
"registry1"
gatekeeper.helmRepo.chartNameπ
Type: string
"gatekeeper"
gatekeeper.helmRepo.tagπ
Type: string
"3.18.2-bb.4"
gatekeeper.fluxπ
Type: object
install:
crds: CreateReplace
upgrade:
crds: CreateReplace
Description: Flux reconciliation overrides specifically for the OPA Gatekeeper Package
gatekeeper.valuesπ
Type: object
{}
Description: Values to passthrough to the gatekeeper chart: https://repo1.dso.mil/big-bang/product/packages/policy.git
gatekeeper.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
kyverno.enabledπ
Type: bool
true
Description: Toggle deployment of Kyverno.
kyverno.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
kyverno.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/kyverno.git"
kyverno.git.pathπ
Type: string
"./chart"
kyverno.git.tagπ
Type: string
"3.3.6-bb.0"
kyverno.helmRepo.repoNameπ
Type: string
"registry1"
kyverno.helmRepo.chartNameπ
Type: string
"kyverno"
kyverno.helmRepo.tagπ
Type: string
"3.3.6-bb.0"
kyverno.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Kyverno Package
kyverno.valuesπ
Type: object
{}
Description: Values to passthrough to the kyverno chart: https://repo1.dso.mil/big-bang/product/packages/kyverno.git
kyverno.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
kyvernoPolicies.enabledπ
Type: bool
true
Description: Toggle deployment of Kyverno policies
kyvernoPolicies.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
kyvernoPolicies.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/kyverno-policies.git"
kyvernoPolicies.git.pathπ
Type: string
"./chart"
kyvernoPolicies.git.tagπ
Type: string
"3.3.4-bb.6"
kyvernoPolicies.helmRepo.repoNameπ
Type: string
"registry1"
kyvernoPolicies.helmRepo.chartNameπ
Type: string
"kyverno-policies"
kyvernoPolicies.helmRepo.tagπ
Type: string
"3.3.4-bb.6"
kyvernoPolicies.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Kyverno Package
kyvernoPolicies.valuesπ
Type: object
{}
Description: Values to passthrough to the kyverno policies chart: https://repo1.dso.mil/big-bang/product/packages/kyverno-policies.git
kyvernoPolicies.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
kyvernoReporter.enabledπ
Type: bool
true
Description: Toggle deployment of Kyverno Reporter
kyvernoReporter.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
kyvernoReporter.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/kyverno-reporter.git"
kyvernoReporter.git.pathπ
Type: string
"./chart"
kyvernoReporter.git.tagπ
Type: string
"3.0.3-bb.1"
kyvernoReporter.helmRepo.repoNameπ
Type: string
"registry1"
kyvernoReporter.helmRepo.chartNameπ
Type: string
"kyverno-reporter"
kyvernoReporter.helmRepo.tagπ
Type: string
"3.0.3-bb.1"
kyvernoReporter.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Kyverno Reporter Package
kyvernoReporter.valuesπ
Type: object
{}
Description: Values to passthrough to the kyverno reporter chart: https://repo1.dso.mil/big-bang/product/packages/kyverno-reporter.git
kyvernoReporter.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
elasticsearchKibana.enabledπ
Type: bool
false
Description: Toggle deployment of Logging (EFK).
elasticsearchKibana.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
elasticsearchKibana.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/elasticsearch-kibana.git"
elasticsearchKibana.git.pathπ
Type: string
"./chart"
elasticsearchKibana.git.tagπ
Type: string
"1.28.0-bb.2"
elasticsearchKibana.helmRepo.repoNameπ
Type: string
"registry1"
elasticsearchKibana.helmRepo.chartNameπ
Type: string
"elasticsearch-kibana"
elasticsearchKibana.helmRepo.tagπ
Type: string
"1.28.0-bb.2"
elasticsearchKibana.fluxπ
Type: object
timeout: 20m
Description: Flux reconciliation overrides specifically for the Logging (EFK) Package
elasticsearchKibana.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
elasticsearchKibana.sso.enabledπ
Type: bool
false
Description: Toggle OIDC SSO for Kibana/Elasticsearch on and off. Enabling this option will auto-create any required secrets.
elasticsearchKibana.sso.client_idπ
Type: string
""
Description: Elasticsearch/Kibana OIDC client ID
elasticsearchKibana.sso.client_secretπ
Type: string
""
Description: Elasticsearch/Kibana OIDC client secret
elasticsearchKibana.serviceAccountAnnotationsπ
Type: object
elasticsearch: {}
kibana: {}
Description: Elasticsearch/Kibana Service Account Annotations
elasticsearchKibana.license.trialπ
Type: bool
false
Description: Toggle trial license installation of elasticsearch. Note that enterprise (non trial) is required for SSO to work.
elasticsearchKibana.license.keyJSONπ
Type: string
""
Description: Elasticsearch license in json format seen here: https://repo1.dso.mil/big-bang/product/packages/elasticsearch-kibana#enterprise-license
elasticsearchKibana.valuesπ
Type: object
{}
Description: Values to passthrough to the elasticsearch-kibana chart: https://repo1.dso.mil/big-bang/product/packages/elasticsearch-kibana.git
elasticsearchKibana.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
eckOperator.enabledπ
Type: bool
false
Description: Toggle deployment of ECK Operator.
eckOperator.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
eckOperator.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/eck-operator.git"
eckOperator.git.pathπ
Type: string
"./chart"
eckOperator.git.tagπ
Type: string
"2.16.1-bb.1"
eckOperator.helmRepo.repoNameπ
Type: string
"registry1"
eckOperator.helmRepo.chartNameπ
Type: string
"eck-operator"
eckOperator.helmRepo.tagπ
Type: string
"2.16.1-bb.1"
eckOperator.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the ECK Operator Package
eckOperator.valuesπ
Type: object
{}
Description: Values to passthrough to the eck-operator chart: https://repo1.dso.mil/big-bang/product/packages/eck-operator.git
eckOperator.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
fluentbit.enabledπ
Type: bool
false
Description: Toggle deployment of Fluent-Bit.
fluentbit.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
fluentbit.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/fluentbit.git"
fluentbit.git.pathπ
Type: string
"./chart"
fluentbit.git.tagπ
Type: string
"0.48.9-bb.0"
fluentbit.helmRepo.repoNameπ
Type: string
"registry1"
fluentbit.helmRepo.chartNameπ
Type: string
"fluentbit"
fluentbit.helmRepo.tagπ
Type: string
"0.48.9-bb.0"
fluentbit.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Fluent-Bit Package
fluentbit.valuesπ
Type: object
{}
Description: Values to passthrough to the fluentbit chart: https://repo1.dso.mil/big-bang/product/packages/fluentbit.git
fluentbit.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
promtail.enabledπ
Type: bool
true
Description: Toggle deployment of Promtail.
promtail.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
promtail.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/promtail.git"
promtail.git.pathπ
Type: string
"./chart"
promtail.git.tagπ
Type: string
"6.16.6-bb.2"
promtail.helmRepo.repoNameπ
Type: string
"registry1"
promtail.helmRepo.chartNameπ
Type: string
"promtail"
promtail.helmRepo.tagπ
Type: string
"6.16.6-bb.2"
promtail.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Promtail Package
promtail.valuesπ
Type: object
{}
Description: Values to passthrough to the promtail chart: https://repo1.dso.mil/big-bang/product/packages/fluentbit.git
promtail.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
loki.enabledπ
Type: bool
true
Description: Toggle deployment of Loki.
loki.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
loki.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/loki.git"
loki.git.pathπ
Type: string
"./chart"
loki.git.tagπ
Type: string
"6.27.0-bb.1"
loki.helmRepo.repoNameπ
Type: string
"registry1"
loki.helmRepo.chartNameπ
Type: string
"loki"
loki.helmRepo.tagπ
Type: string
"6.27.0-bb.1"
loki.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Loki Package
loki.strategyπ
Type: string
"monolith"
Description: Loki architecture. Options are monolith and scalable
loki.clusterNameπ
Type: string
""
Description: Loki clusterName identifier for Promtail and Dashboards
loki.objectStorage.endpointπ
Type: string
""
Description: S3 compatible endpoint to use for connection information. examples: βhttps://s3.amazonaws.comβ βhttps://s3.us-gov-west-1.amazonaws.comβ βhttp://minio.minio.svc.cluster.local:9000β
loki.objectStorage.regionπ
Type: string
""
Description: S3 compatible region to use for connection information.
loki.objectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint.
loki.objectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
loki.objectStorage.bucketNamesπ
Type: object
{}
Description: Bucket Names for the Loki buckets as YAML chunks: loki-logs ruler: loki-ruler admin: loki-admin
loki.valuesπ
Type: object
{}
Description: Values to passthrough to the Loki chart: https://repo1.dso.mil/big-bang/product/packages/loki.git
loki.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
neuvector.enabledπ
Type: bool
true
Description: Toggle deployment of Neuvector.
neuvector.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
neuvector.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/neuvector.git"
neuvector.git.pathπ
Type: string
"./chart"
neuvector.git.tagπ
Type: string
"2.8.3-bb.1"
neuvector.helmRepo.repoNameπ
Type: string
"registry1"
neuvector.helmRepo.chartNameπ
Type: string
"neuvector"
neuvector.helmRepo.tagπ
Type: string
"2.8.3-bb.1"
neuvector.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
neuvector.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Neuvector on and off
neuvector.sso.client_idπ
Type: string
""
Description: OIDC Client ID to use for Neuvector
neuvector.sso.client_secretπ
Type: string
""
Description: OIDC Client Secret to use for Neuvector
neuvector.sso.default_roleπ
Type: string
""
Description: Default role to use for Neuvector OIDC users. Supports admin, reader, or no default
neuvector.sso.group_claimπ
Type: string
""
Description: Default role to use for Neuvector OIDC users. Supports admin, reader, or no default
neuvector.sso.group_mapped_rolesπ
Type: list
[]
Description: Default role to use for Neuvector OIDC users. Supports admin, reader, or no default
neuvector.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Neuvector Package
neuvector.valuesπ
Type: object
{}
Description: Values to passthrough to the Neuvector chart: https://repo1.dso.mil/big-bang/product/packages/neuvector.git
neuvector.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
tempo.enabledπ
Type: bool
true
Description: Toggle deployment of Tempo.
tempo.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
tempo.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/tempo.git"
tempo.git.pathπ
Type: string
"./chart"
tempo.git.tagπ
Type: string
"1.18.3-bb.0"
tempo.helmRepo.repoNameπ
Type: string
"registry1"
tempo.helmRepo.chartNameπ
Type: string
"tempo"
tempo.helmRepo.tagπ
Type: string
"1.18.3-bb.0"
tempo.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
tempo.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Tempo Package
tempo.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Tempo on and off
tempo.sso.client_idπ
Type: string
""
Description: OIDC Client ID to use for Tempo
tempo.sso.client_secretπ
Type: string
""
Description: OIDC Client Secret to use for Tempo
tempo.objectStorage.endpointπ
Type: string
""
Description: S3 compatible endpoint to use for connection information. examples: βs3.amazonaws.comβ βs3.us-gov-west-1.amazonaws.comβ βminio.minio.svc.cluster.local:9000β Note: tempo does not require protocol prefix for URL.
tempo.objectStorage.regionπ
Type: string
""
Description: S3 compatible region to use for connection information.
tempo.objectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint.
tempo.objectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
tempo.objectStorage.bucketπ
Type: string
""
Description: Bucket Name for Tempo examples: βtempo-tracesβ
tempo.objectStorage.insecureπ
Type: bool
false
Description: Whether or not objectStorage connection should require HTTPS, if connecting to in-cluster object storage on port 80/9000 set this value to true.
tempo.valuesπ
Type: object
{}
Description: Values to passthrough to the Tempo chart: https://repo1.dso.mil/big-bang/product/packages/tempo.git
tempo.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
monitoring.enabledπ
Type: bool
true
Description: Toggle deployment of Monitoring (Prometheus, Grafana, and Alertmanager).
monitoring.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
monitoring.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/monitoring.git"
monitoring.git.pathπ
Type: string
"./chart"
monitoring.git.tagπ
Type: string
"69.7.3-bb.1"
monitoring.helmRepo.repoNameπ
Type: string
"registry1"
monitoring.helmRepo.chartNameπ
Type: string
"monitoring"
monitoring.helmRepo.tagπ
Type: string
"69.7.3-bb.1"
monitoring.fluxπ
Type: object
install:
crds: CreateReplace
upgrade:
crds: CreateReplace
Description: Flux reconciliation overrides specifically for the Monitoring Package
monitoring.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
monitoring.sso.enabledπ
Type: bool
false
Description: Toggle SSO for monitoring components on and off
monitoring.sso.prometheus.client_idπ
Type: string
""
Description: Prometheus OIDC client ID
monitoring.sso.prometheus.client_secretπ
Type: string
""
Description: Prometheus OIDC client secret
monitoring.sso.alertmanager.client_idπ
Type: string
""
Description: Alertmanager OIDC client ID
monitoring.sso.alertmanager.client_secretπ
Type: string
""
Description: Alertmanager OIDC client secret
monitoring.valuesπ
Type: object
{}
Description: Values to passthrough to the monitoring chart: https://repo1.dso.mil/big-bang/product/packages/monitoring.git
monitoring.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
grafana.enabledπ
Type: bool
true
Description: Toggle deployment of Grafana
grafana.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
grafana.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/grafana.git"
grafana.git.pathπ
Type: string
"./chart"
grafana.git.tagπ
Type: string
"8.10.4-bb.0"
grafana.helmRepo.repoNameπ
Type: string
"registry1"
grafana.helmRepo.chartNameπ
Type: string
"grafana"
grafana.helmRepo.tagπ
Type: string
"8.10.4-bb.0"
grafana.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Monitoring Package
grafana.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
grafana.sso.enabledπ
Type: bool
false
Description: Toggle SSO for grafana components on and off
grafana.sso.grafana.client_idπ
Type: string
""
Description: Grafana OIDC client ID
grafana.sso.grafana.client_secretπ
Type: string
""
Description: Grafana OIDC client secret
grafana.sso.grafana.scopesπ
Type: string
""
Description: Grafana OIDC client scopes, comma separated, see https://grafana.com/docs/grafana/latest/auth/generic-oauth/
grafana.sso.grafana.allow_sign_upπ
Type: bool
true
grafana.sso.grafana.role_attribute_pathπ
Type: string
"Viewer"
grafana.valuesπ
Type: object
{}
Description: Values to passthrough to the grafana chart: https://repo1.dso.mil/big-bang/product/packages/grafana.git
grafana.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
twistlock.enabledπ
Type: bool
false
Description: Toggle deployment of Twistlock.
twistlock.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
twistlock.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/twistlock.git"
twistlock.git.pathπ
Type: string
"./chart"
twistlock.git.tagπ
Type: string
"0.19.0-bb.5"
twistlock.helmRepo.repoNameπ
Type: string
"registry1"
twistlock.helmRepo.chartNameπ
Type: string
"twistlock"
twistlock.helmRepo.tagπ
Type: string
"0.19.0-bb.5"
twistlock.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Twistlock Package
twistlock.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
twistlock.sso.enabledπ
Type: bool
false
Description: Toggle SAML SSO, requires a license and enabling the init job - see https://repo1.dso.mil/big-bang/product/packages/initialization.md
twistlock.sso.client_idπ
Type: string
""
Description: SAML client ID
twistlock.sso.provider_typeπ
Type: string
"shibboleth"
Description: SAML Identity Provider. shibboleth
is recommended by Twistlock support for Keycloak Possible values: okta, gsuite, ping, shibboleth, azure, adfs
twistlock.sso.groupsπ
Type: string
""
Description: Groups attribute (optional)
twistlock.valuesπ
Type: object
{}
Description: Values to passthrough to the twistlock chart: https://repo1.dso.mil/big-bang/product/packages/twistlock.git
twistlock.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
bbctl.enabledπ
Type: bool
false
Description: Toggle deployment of the bbctl dashboards
bbctl.sourceTypeπ
Type: string
"git"
bbctl.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/bbctl.git"
bbctl.git.tagπ
Type: string
"1.0.0-bb.2"
bbctl.git.pathπ
Type: string
"./chart"
bbctl.helmRepo.repoNameπ
Type: string
"registry1"
bbctl.helmRepo.chartNameπ
Type: string
"bbctl"
bbctl.helmRepo.tagπ
Type: string
"1.0.0-bb.2"
bbctl.repoCredentials.repoπ
Type: string
"repo1.dso.mil"
bbctl.repoCredentials.usernameπ
Type: string
""
bbctl.repoCredentials.passwordπ
Type: string
""
bbctl.fluxπ
Type: object
{}
Description: Override flux settings for this package
bbctl.valuesπ
Type: object
{}
bbctl.postRenderersπ
Type: list
[]
addons.argocd.enabledπ
Type: bool
false
Description: Toggle deployment of ArgoCD.
addons.argocd.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.argocd.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/argocd.git"
addons.argocd.git.pathπ
Type: string
"./chart"
addons.argocd.git.tagπ
Type: string
"7.8.11-bb.0"
addons.argocd.helmRepo.repoNameπ
Type: string
"registry1"
addons.argocd.helmRepo.chartNameπ
Type: string
"argocd"
addons.argocd.helmRepo.tagπ
Type: string
"7.8.11-bb.0"
addons.argocd.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the ArgoCD Package
addons.argocd.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.argocd.redis.hostπ
Type: string
""
Description: Hostname of a pre-existing Redis to use for ArgoCD. Entering connection info will enable external Redis and will auto-create any required secrets.
addons.argocd.redis.portπ
Type: string
""
Description: Port of a pre-existing Redis to use for ArgoCD.
addons.argocd.sso.enabledπ
Type: bool
false
Description: Toggle SSO for ArgoCD on and off
addons.argocd.sso.client_idπ
Type: string
""
Description: ArgoCD OIDC client ID
addons.argocd.sso.client_secretπ
Type: string
""
Description: ArgoCD OIDC client secret
addons.argocd.sso.groupsπ
Type: string
"g, Impact Level 2 Authorized, role:admin\n"
Description: ArgoCD SSO group roles, see docs for more details: https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/
addons.argocd.valuesπ
Type: object
{}
Description: Values to passthrough to the argocd chart: https://repo1.dso.mil/big-bang/product/packages/argocd.git
addons.argocd.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.authservice.enabledπ
Type: bool
false
Description: Toggle deployment of Authservice. if enabling authservice, a filter needs to be provided by either enabling sso for monitoring or istio, or manually adding a filter chain in the values here: values: chain: minimal: callback_uri: βhttps://somecallbackβ
addons.authservice.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.authservice.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/authservice.git"
addons.authservice.git.pathπ
Type: string
"./chart"
addons.authservice.git.tagπ
Type: string
"1.0.4-bb.1"
addons.authservice.helmRepo.repoNameπ
Type: string
"registry1"
addons.authservice.helmRepo.chartNameπ
Type: string
"authservice"
addons.authservice.helmRepo.tagπ
Type: string
"1.0.4-bb.1"
addons.authservice.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Authservice Package
addons.authservice.valuesπ
Type: object
{}
Description: Values to passthrough to the authservice chart: https://repo1.dso.mil/big-bang/product/packages/authservice.git
addons.authservice.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.authservice.chainsπ
Type: object
{}
Description: Additional authservice chain configurations.
addons.minioOperator.enabledπ
Type: bool
false
Description: Toggle deployment of minio operator and instance.
addons.minioOperator.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.minioOperator.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/minio-operator.git"
addons.minioOperator.git.pathπ
Type: string
"./chart"
addons.minioOperator.git.tagπ
Type: string
"7.0.1-bb.2"
addons.minioOperator.helmRepo.repoNameπ
Type: string
"registry1"
addons.minioOperator.helmRepo.chartNameπ
Type: string
"minio-operator"
addons.minioOperator.helmRepo.tagπ
Type: string
"7.0.1-bb.2"
addons.minioOperator.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Minio Operator Package
addons.minioOperator.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.minioOperator.valuesπ
Type: object
{}
Description: Values to passthrough to the minio operator chart: https://repo1.dso.mil/big-bang/product/packages/minio-operator.git
addons.minioOperator.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.minio.enabledπ
Type: bool
false
Description: Toggle deployment of minio.
addons.minio.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.minio.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/minio.git"
addons.minio.git.pathπ
Type: string
"./chart"
addons.minio.git.tagπ
Type: string
"7.0.0-bb.4"
addons.minio.helmRepo.repoNameπ
Type: string
"registry1"
addons.minio.helmRepo.chartNameπ
Type: string
"minio-instance"
addons.minio.helmRepo.tagπ
Type: string
"7.0.0-bb.4"
addons.minio.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Minio Package
addons.minio.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.minio.accesskeyπ
Type: string
""
Description: Default access key to use for minio.
addons.minio.secretkeyπ
Type: string
""
Description: Default secret key to intstantiate with minio, you should change/delete this after installation.
addons.minio.valuesπ
Type: object
{}
Description: Values to passthrough to the minio instance chart: https://repo1.dso.mil/big-bang/product/packages/minio.git
addons.minio.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.gitlab.enabledπ
Type: bool
false
Description: Toggle deployment of Gitlab
addons.gitlab.hostnames.gitlabπ
Type: string
"gitlab"
addons.gitlab.hostnames.registryπ
Type: string
"registry"
addons.gitlab.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.gitlab.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/gitlab.git"
addons.gitlab.git.pathπ
Type: string
"./chart"
addons.gitlab.git.tagπ
Type: string
"8.10.1-bb.0"
addons.gitlab.helmRepo.repoNameπ
Type: string
"registry1"
addons.gitlab.helmRepo.chartNameπ
Type: string
"gitlab"
addons.gitlab.helmRepo.tagπ
Type: string
"8.10.1-bb.0"
addons.gitlab.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Gitlab Package
addons.gitlab.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.gitlab.sso.enabledπ
Type: bool
false
Description: Toggle OIDC SSO for Gitlab on and off. Enabling this option will auto-create any required secrets.
addons.gitlab.sso.client_idπ
Type: string
""
Description: Gitlab OIDC client ID
addons.gitlab.sso.client_secretπ
Type: string
""
Description: Gitlab OIDC client secret
addons.gitlab.sso.scopesπ
Type: list
- Gitlab
Description: Gitlab SSO Scopes, default is [βGitlabβ]
addons.gitlab.sso.groupsπ
Type: list
[]
Description: Fill out the groups block below and populate with Keycloak groups according to your desired Gitlab membership requirements. The default groupsAttribute is βgroupsβ. Full documentation: https://docs.gitlab.com/ee/administration/auth/oidc.html?tab=Linux+package+%28Omnibus%29#configure-users-based-on-oidc-group-membership
addons.gitlab.database.hostπ
Type: string
""
Description: Hostname of a pre-existing PostgreSQL database to use for Gitlab. Entering connection info will disable the deployment of an internal database and will auto-create any required secrets.
addons.gitlab.database.portπ
Type: int
5432
Description: Port of a pre-existing PostgreSQL database to use for Gitlab.
addons.gitlab.database.databaseπ
Type: string
""
Description: Database name to connect to on host.
addons.gitlab.database.usernameπ
Type: string
""
Description: Username to connect as to external database, the user must have all privileges on the database.
addons.gitlab.database.passwordπ
Type: string
""
Description: Database password for the username used to connect to the existing database.
addons.gitlab.objectStorage.typeπ
Type: string
""
Description: Type of object storage to use for Gitlab, setting to s3 will assume an external, pre-existing object storage is to be used. Entering connection info will enable this option and will auto-create any required secrets
addons.gitlab.objectStorage.endpointπ
Type: string
""
Description: S3 compatible endpoint to use for connection information. examples: βhttps://s3.amazonaws.comβ βhttps://s3.us-gov-west-1.amazonaws.comβ βhttp://minio.minio.svc.cluster.local:9000β
addons.gitlab.objectStorage.regionπ
Type: string
""
Description: S3 compatible region to use for connection information.
addons.gitlab.objectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint. β If using accessKey and accessSecret, the iamProfile must be left as an empty string: ββ
addons.gitlab.objectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
addons.gitlab.objectStorage.bucketPrefixπ
Type: string
""
Description: Bucket prefix to use for identifying buckets. Example: βprodβ will produce βprod-gitlab-bucketβ
addons.gitlab.objectStorage.iamProfileπ
Type: string
""
Description: NOTE: Current bug with AWS IAM Profiles and Object Storage where only artifacts are stored. Fixed in Gitlab 14.5 β Name of AWS IAM profile to use. β If using an AWS IAM profile, the accessKey and accessSecret values must be left as empty strings eg: ββ
addons.gitlab.smtp.passwordπ
Type: string
""
Description: Passwords should be placed in an encrypted file. Example: environment-bb-secret.enc.yaml If a value is provided BigBang will create a k8s secret named gitlab-smtp-password in the gitlab namespace
addons.gitlab.redis.passwordπ
Type: string
""
Description: Redis plain text password to connect to the redis server. If empty (ββ), the gitlab charts will create the gitlab-redis-secret with a random password. β This needs to be set to a non-empty value in order for the Grafana Redis Datasource and Dashboards to be installed.
addons.gitlab.railsSecretπ
Type: string
""
Description: Rails plain text secret to define. If empty (ββ), the gitlab charts will create the gitlab-rails-secret with randomized data. Read the following for more information on setting Gitlab rails secrets: https://docs.gitlab.com/charts/installation/secrets#gitlab-rails-secret
addons.gitlab.valuesπ
Type: object
{}
Description: Values to passthrough to the gitlab chart: https://repo1.dso.mil/big-bang/product/packages/gitlab.git
addons.gitlab.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.gitlabRunner.enabledπ
Type: bool
false
Description: Toggle deployment of Gitlab Runner
addons.gitlabRunner.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.gitlabRunner.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/gitlab-runner.git"
addons.gitlabRunner.git.pathπ
Type: string
"./chart"
addons.gitlabRunner.git.tagπ
Type: string
"0.73.0-bb.2"
addons.gitlabRunner.helmRepo.repoNameπ
Type: string
"registry1"
addons.gitlabRunner.helmRepo.chartNameπ
Type: string
"gitlab-runner"
addons.gitlabRunner.helmRepo.tagπ
Type: string
"0.73.0-bb.2"
addons.gitlabRunner.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Gitlab Runner Package
addons.gitlabRunner.valuesπ
Type: object
{}
Description: Values to passthrough to the gitlab runner chart: https://repo1.dso.mil/big-bang/product/packages/gitlab-runner.git
addons.gitlabRunner.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.nexusRepositoryManager.enabledπ
Type: bool
false
Description: Toggle deployment of Nexus Repository Manager.
addons.nexusRepositoryManager.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.nexusRepositoryManager.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/nexus.git"
addons.nexusRepositoryManager.git.pathπ
Type: string
"./chart"
addons.nexusRepositoryManager.git.tagπ
Type: string
"75.0.0-bb.2"
addons.nexusRepositoryManager.helmRepo.repoNameπ
Type: string
"registry1"
addons.nexusRepositoryManager.helmRepo.chartNameπ
Type: string
"nexus-repository-manager"
addons.nexusRepositoryManager.helmRepo.tagπ
Type: string
"75.0.0-bb.2"
addons.nexusRepositoryManager.license_keyπ
Type: string
""
Description: Base64 encoded license file.
addons.nexusRepositoryManager.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.nexusRepositoryManager.sso.enabledπ
Type: bool
false
Description: Toggle SAML SSO for NXRM. β handles SAML SSO, a Client must be configured in Keycloak or IdP β to complete setup. β https://support.sonatype.com/hc/en-us/articles/1500000976522-SAML-integration-for-Nexus-Repository-Manager-Pro-3-and-Nexus-IQ-Server-with-Keycloak#h_01EV7CWCYH3YKAPMAHG8XMQ599
addons.nexusRepositoryManager.sso.idp_dataπ
Type: object
email: ''
entityId: ''
firstName: ''
groups: ''
lastName: ''
username: ''
Description: NXRM SAML SSO Integration data
addons.nexusRepositoryManager.sso.idp_data.usernameπ
Type: string
""
Description: IdP Field Mappings β NXRM username attribute
addons.nexusRepositoryManager.sso.idp_data.firstNameπ
Type: string
""
Description: NXRM firstname attribute (optional)
addons.nexusRepositoryManager.sso.idp_data.lastNameπ
Type: string
""
Description: NXRM lastname attribute (optional)
addons.nexusRepositoryManager.sso.idp_data.emailπ
Type: string
""
Description: NXRM email attribute (optional)
addons.nexusRepositoryManager.sso.idp_data.groupsπ
Type: string
""
Description: NXRM groups attribute (optional)
addons.nexusRepositoryManager.sso.roleπ
Type: list
- description: ''
id: ''
name: ''
privileges: []
roles: []
Description: NXRM Role
addons.nexusRepositoryManager.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Nexus Repository Manager Package
addons.nexusRepositoryManager.valuesπ
Type: object
{}
Description: Values to passthrough to the nxrm chart: https://repo1.dso.mil/big-bang/product/packages/nexus.git
addons.nexusRepositoryManager.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.sonarqube.enabledπ
Type: bool
false
Description: Toggle deployment of SonarQube.
addons.sonarqube.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.sonarqube.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/sonarqube.git"
addons.sonarqube.git.pathπ
Type: string
"./chart"
addons.sonarqube.git.tagπ
Type: string
"10.7.0-bb.1"
addons.sonarqube.helmRepo.repoNameπ
Type: string
"registry1"
addons.sonarqube.helmRepo.chartNameπ
Type: string
"sonarqube"
addons.sonarqube.helmRepo.tagπ
Type: string
"10.7.0-bb.1"
addons.sonarqube.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Sonarqube Package
addons.sonarqube.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.sonarqube.sso.enabledπ
Type: bool
false
Description: Toggle SAML SSO for SonarQube. Enabling this option will auto-create any required secrets.
addons.sonarqube.sso.client_idπ
Type: string
""
Description: SonarQube SAML client ID
addons.sonarqube.sso.loginπ
Type: string
"login"
Description: SonarQube login sso attribute.
addons.sonarqube.sso.nameπ
Type: string
"name"
Description: SonarQube name sso attribute.
addons.sonarqube.sso.emailπ
Type: string
"email"
Description: SonarQube email sso attribute.
addons.sonarqube.sso.groupπ
Type: string
"group"
Description: (optional) SonarQube group sso attribute.
addons.sonarqube.database.hostπ
Type: string
""
Description: Hostname of a pre-existing PostgreSQL database to use for SonarQube.
addons.sonarqube.database.portπ
Type: int
5432
Description: Port of a pre-existing PostgreSQL database to use for SonarQube.
addons.sonarqube.database.databaseπ
Type: string
""
Description: Database name to connect to on host.
addons.sonarqube.database.usernameπ
Type: string
""
Description: Username to connect as to external database, the user must have all privileges on the database.
addons.sonarqube.database.passwordπ
Type: string
""
Description: Database password for the username used to connect to the existing database.
addons.sonarqube.valuesπ
Type: object
{}
Description: Values to passthrough to the sonarqube chart: https://repo1.dso.mil/big-bang/product/packages/sonarqube.git
addons.sonarqube.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.fortify.enabledπ
Type: bool
false
Description: Toggle deployment of Fortify.
addons.fortify.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.fortify.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/fortify.git"
addons.fortify.git.pathπ
Type: string
"./chart"
addons.fortify.git.tagπ
Type: string
"1.1.2320154-bb.24"
addons.fortify.helmRepo.repoNameπ
Type: string
"registry1"
addons.fortify.helmRepo.chartNameπ
Type: string
"fortify-ssc"
addons.fortify.helmRepo.tagπ
Type: string
"1.1.2320154-bb.24"
addons.fortify.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Fortify Package
addons.fortify.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.fortify.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Fortify on and off
addons.fortify.sso.client_idπ
Type: string
""
Description: SAML Client ID to use for Fortify
addons.fortify.sso.client_secretπ
Type: string
""
Description: SAML Client Secret to use for Fortify
addons.fortify.valuesπ
Type: object
{}
Description: Values to passthrough to the fortify chart: https://repo1.dso.mil/big-bang/product/packages/fortify.git
addons.fortify.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.haproxy.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.haproxy.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/haproxy.git"
addons.haproxy.git.pathπ
Type: string
"./chart"
addons.haproxy.git.tagπ
Type: string
"1.19.3-bb.10"
addons.haproxy.helmRepo.repoNameπ
Type: string
"registry1"
addons.haproxy.helmRepo.chartNameπ
Type: string
"haproxy"
addons.haproxy.helmRepo.tagπ
Type: string
"1.19.3-bb.10"
addons.haproxy.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the HAProxy Package
addons.haproxy.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.haproxy.valuesπ
Type: object
{}
Description: Values to passthrough to the haproxy chart: https://repo1.dso.mil/big-bang/product/packages/haproxy.git
addons.haproxy.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.anchore.enabledπ
Type: bool
false
Description: Toggle deployment of Anchore.
addons.anchore.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.anchore.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/anchore-enterprise.git"
addons.anchore.git.pathπ
Type: string
"./chart"
addons.anchore.git.tagπ
Type: string
"3.5.0-bb.1"
addons.anchore.helmRepo.repoNameπ
Type: string
"registry1"
addons.anchore.helmRepo.chartNameπ
Type: string
"anchore"
addons.anchore.helmRepo.tagπ
Type: string
"3.5.0-bb.1"
addons.anchore.fluxπ
Type: object
upgrade:
disableWait: true
Description: Flux reconciliation overrides specifically for the Anchore Package
addons.anchore.adminPasswordπ
Type: string
""
Description: Initial admin password used to authenticate to Anchore.
addons.anchore.enterpriseπ
Type: object
licenseYaml: 'FULL LICENSE
'
Description: Anchore Enterprise functionality.
addons.anchore.enterprise.licenseYamlπ
Type: string
"FULL LICENSE\n"
Description: License for Anchore Enterprise. Enterprise is the only option available for the chart starting with chart major version 2.X. For formatting examples see https://repo1.dso.mil/big-bang/product/packages/CHART.md#enabling-enterprise-services
addons.anchore.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.anchore.sso.enabledπ
Type: bool
false
Description: Toggle SAML SSO for Anchore on and off. Enabling this option will auto-create any required secrets (Note: SSO requires an Enterprise license).
addons.anchore.sso.client_idπ
Type: string
""
Description: Anchore SAML client ID
addons.anchore.sso.role_attributeπ
Type: string
""
Description: Anchore SAML client role attribute
addons.anchore.database.hostπ
Type: string
""
Description: Hostname of a pre-existing PostgreSQL database to use for Anchore. Entering connection info will disable the deployment of an internal database and will auto-create any required secrets.
addons.anchore.database.portπ
Type: string
""
Description: Port of a pre-existing PostgreSQL database to use for Anchore.
addons.anchore.database.usernameπ
Type: string
""
Description: Username to connect as to external database, the user must have all privileges on the database.
addons.anchore.database.passwordπ
Type: string
""
Description: Database password for the username used to connect to the existing database.
addons.anchore.database.databaseπ
Type: string
""
Description: Database name to connect to on host (Note: database name CANNOT contain hyphens).
addons.anchore.database.feeds_databaseπ
Type: string
""
Description: Feeds database name to connect to on host (Note: feeds database name CANNOT contain hyphens). Only required for enterprise edition of anchore. By default, feeds database will be configured with the same username and password as the main database. For formatting examples on how to use a separate username and password for the feeds database see https://repo1.dso.mil/big-bang/product/packages/CHART.md#handling-dependencies
addons.anchore.redis.hostπ
Type: string
""
Description: Hostname of a pre-existing Redis to use for Anchore Enterprise. Entering connection info will enable external redis and will auto-create any required secrets. Anchore only requires redis for enterprise deployments and will not provision an instance if using external
addons.anchore.redis.portπ
Type: string
""
Description: Port of a pre-existing Redis to use for Anchore Enterprise.
addons.anchore.redis.usernameπ
Type: string
""
Description: OPTIONAL: Username to connect to a pre-existing Redis (for password-only auth leave empty)
addons.anchore.redis.passwordπ
Type: string
""
Description: Password to connect to pre-existing Redis.
addons.anchore.valuesπ
Type: object
{}
Description: Values to passthrough to the anchore chart: https://repo1.dso.mil/big-bang/product/packages/anchore-enterprise.git
addons.anchore.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.mattermostOperator.enabledπ
Type: bool
false
Description: Toggle deployment of Mattermost Operator.
addons.mattermostOperator.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.mattermostOperator.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/mattermost-operator.git"
addons.mattermostOperator.git.pathπ
Type: string
"./chart"
addons.mattermostOperator.git.tagπ
Type: string
"1.22.1-bb.1"
addons.mattermostOperator.helmRepo.repoNameπ
Type: string
"registry1"
addons.mattermostOperator.helmRepo.chartNameπ
Type: string
"mattermost-operator"
addons.mattermostOperator.helmRepo.tagπ
Type: string
"1.22.1-bb.1"
addons.mattermostOperator.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Mattermost Operator Package
addons.mattermostOperator.valuesπ
Type: object
{}
Description: Values to passthrough to the mattermost operator chart: https://repo1.dso.mil/big-bang/product/packages/values.yaml
addons.mattermostOperator.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.mattermost.enabledπ
Type: bool
false
Description: Toggle deployment of Mattermost.
addons.mattermost.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.mattermost.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/mattermost.git"
addons.mattermost.git.pathπ
Type: string
"./chart"
addons.mattermost.git.tagπ
Type: string
"10.6.1-bb.4"
addons.mattermost.helmRepo.repoNameπ
Type: string
"registry1"
addons.mattermost.helmRepo.chartNameπ
Type: string
"mattermost"
addons.mattermost.helmRepo.tagπ
Type: string
"10.6.1-bb.4"
addons.mattermost.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Mattermost Package
addons.mattermost.enterpriseπ
Type: object
enabled: false
license: ''
Description: Mattermost Enterprise functionality.
addons.mattermost.enterprise.enabledπ
Type: bool
false
Description: Toggle the Mattermost Enterprise. This must be accompanied by a valid license unless you plan to start a trial post-install.
addons.mattermost.enterprise.licenseπ
Type: string
""
Description: License for Mattermost. This should be the entire contents of the license file from Mattermost (should be one line), example below license: βeyJpZCI6InIxM205bjR3eTdkYjludG95Z3RiODβRESTβISβHIDDEN
addons.mattermost.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.mattermost.sso.enabledπ
Type: bool
false
Description: Toggle OIDC SSO for Mattermost on and off. Enabling this option will auto-create any required secrets.
addons.mattermost.sso.client_idπ
Type: string
""
Description: Mattermost OIDC client ID
addons.mattermost.sso.client_secretπ
Type: string
""
Description: Mattermost OIDC client secret
addons.mattermost.database.hostπ
Type: string
""
Description: Hostname of a pre-existing PostgreSQL database to use for Mattermost. Entering connection info will disable the deployment of an internal database and will auto-create any required secrets.
addons.mattermost.database.portπ
Type: string
""
Description: Port of a pre-existing PostgreSQL database to use for Mattermost.
addons.mattermost.database.usernameπ
Type: string
""
Description: Username to connect as to external database, the user must have all privileges on the database.
addons.mattermost.database.passwordπ
Type: string
""
Description: Database password for the username used to connect to the existing database.
addons.mattermost.database.databaseπ
Type: string
""
Description: Database name to connect to on host.
addons.mattermost.database.ssl_modeπ
Type: string
""
Description: SSL Mode to use when connecting to the database. Allowable values for this are viewable in the postgres documentation: https://www.postgresql.org/docs/current/libpq-ssl.html#LIBPQ-SSL-SSLMODE-STATEMENTS
addons.mattermost.objectStorage.endpointπ
Type: string
""
Description: S3 compatible endpoint to use for connection information. Entering connection info will enable this option and will auto-create any required secrets. examples: βs3.amazonaws.comβ βs3.us-gov-west-1.amazonaws.comβ βminio.minio.svc.cluster.local:9000β
addons.mattermost.objectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint.
addons.mattermost.objectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
addons.mattermost.objectStorage.bucketπ
Type: string
""
Description: Bucket name to use for Mattermost - will be auto-created.
addons.mattermost.elasticsearchπ
Type: object
enabled: false
Description: Mattermost Elasticsearch integration - requires enterprise E20 license - https://docs.mattermost.com/deployment/elasticsearch.html Connection info defaults to the BB deployed Elastic, all values can be overridden via the βvaluesβ passthrough for other connections. See values spec in MM chart βelasticsearchβ yaml block - https://repo1.dso.mil/big-bang/product/packages/values.yaml
addons.mattermost.elasticsearch.enabledπ
Type: bool
false
Description: Toggle interaction with Elastic for optimized search indexing
addons.mattermost.valuesπ
Type: object
{}
Description: Values to passthrough to the Mattermost chart: https://repo1.dso.mil/big-bang/product/packages/values.yaml
addons.mattermost.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.velero.enabledπ
Type: bool
false
Description: Toggle deployment of Velero.
addons.velero.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.velero.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/velero.git"
addons.velero.git.pathπ
Type: string
"./chart"
addons.velero.git.tagπ
Type: string
"8.4.0-bb.1"
addons.velero.helmRepo.repoNameπ
Type: string
"registry1"
addons.velero.helmRepo.chartNameπ
Type: string
"velero"
addons.velero.helmRepo.tagπ
Type: string
"8.4.0-bb.1"
addons.velero.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Velero Package
addons.velero.pluginsπ
Type: list
[]
Description: Plugin provider for Velero - requires at least one plugin installed. Current supported values: aws, azure, csi
addons.velero.valuesπ
Type: object
{}
Description: Values to passthrough to the Velero chart: https://repo1.dso.mil/big-bang/product/packages/values.yaml
addons.velero.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.keycloak.enabledπ
Type: bool
false
Description: Toggle deployment of Keycloak. if you enable Keycloak you should uncomment the istio passthrough configurations above istio.ingressGateways.passthrough-ingressgateway and istio.gateways.passthrough
addons.keycloak.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.keycloak.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/keycloak.git"
addons.keycloak.git.pathπ
Type: string
"./chart"
addons.keycloak.git.tagπ
Type: string
"2.5.1-bb.6"
addons.keycloak.helmRepo.repoNameπ
Type: string
"registry1"
addons.keycloak.helmRepo.chartNameπ
Type: string
"keycloak"
addons.keycloak.helmRepo.tagπ
Type: string
"2.5.1-bb.6"
addons.keycloak.database.hostπ
Type: string
""
Description: Hostname of a pre-existing database to use for Keycloak. Entering connection info will disable the deployment of an internal database and will auto-create any required secrets.
addons.keycloak.database.typeπ
Type: string
"postgres"
Description: Pre-existing database type (e.g. postgres) to use for Keycloak.
addons.keycloak.database.portπ
Type: int
5432
Description: Port of a pre-existing database to use for Keycloak.
addons.keycloak.database.databaseπ
Type: string
""
Description: Database name to connect to on host.
addons.keycloak.database.usernameπ
Type: string
""
Description: Username to connect as to external database, the user must have all privileges on the database.
addons.keycloak.database.passwordπ
Type: string
""
Description: Database password for the username used to connect to the existing database.
addons.keycloak.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the OPA Gatekeeper Package
addons.keycloak.ingressπ
Type: object
cert: ''
gateway: ''
key: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.keycloak.ingress.keyπ
Type: string
""
Description: Certificate/Key pair to use as the certificate for exposing Keycloak Setting the ingress cert here will automatically create the volume and volumemounts in the Keycloak Package chart
addons.keycloak.valuesπ
Type: object
{}
Description: Values to passthrough to the keycloak chart: https://repo1.dso.mil/big-bang/product/packages/keycloak.git
addons.keycloak.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.vault.enabledπ
Type: bool
false
Description: Toggle deployment of Vault.
addons.vault.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.vault.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/vault.git"
addons.vault.git.pathπ
Type: string
"./chart"
addons.vault.git.tagπ
Type: string
"0.29.1-bb.10"
addons.vault.helmRepo.repoNameπ
Type: string
"registry1"
addons.vault.helmRepo.chartNameπ
Type: string
"vault"
addons.vault.helmRepo.tagπ
Type: string
"0.29.1-bb.10"
addons.vault.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Vault Package
addons.vault.ingressπ
Type: object
cert: ''
gateway: ''
key: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.vault.ingress.keyπ
Type: string
""
Description: Certificate/Key pair to use as the certificate for exposing Vault Setting the ingress cert here will automatically create the volume and volumemounts in the Vault package chart
addons.vault.valuesπ
Type: object
{}
Description: Values to passthrough to the vault chart: https://repo1.dso.mil/big-bang/product/packages/vault.git
addons.vault.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.metricsServer.enabledπ
Type: string
"auto"
Description: Toggle deployment of metrics server Acceptable options are enabled: true, enabled: false, enabled: auto true = enabled / false = disabled / auto = automatic (Installs only if metrics API endpoint is not present)
addons.metricsServer.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.metricsServer.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/metrics-server.git"
addons.metricsServer.git.pathπ
Type: string
"./chart"
addons.metricsServer.git.tagπ
Type: string
"3.12.2-bb.3"
addons.metricsServer.helmRepo.repoNameπ
Type: string
"registry1"
addons.metricsServer.helmRepo.chartNameπ
Type: string
"metrics-server"
addons.metricsServer.helmRepo.tagπ
Type: string
"3.12.2-bb.3"
addons.metricsServer.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the metrics server Package
addons.metricsServer.valuesπ
Type: object
{}
Description: Values to passthrough to the metrics server chart: https://repo1.dso.mil/big-bang/product/packages/metrics-server.git
addons.metricsServer.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.harbor.enabledπ
Type: bool
false
Description: Toggle deployment of harbor
addons.harbor.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.harbor.git.repoπ
Type: string
"https://repo1.dso.mil/platform-one/big-bang/apps/sandbox/harbor.git"
addons.harbor.git.tagπ
Type: string
"1.16.1-bb.0"
addons.harbor.git.pathπ
Type: string
"./chart"
addons.harbor.helmRepo.repoNameπ
Type: string
"registry1"
addons.harbor.helmRepo.chartNameπ
Type: string
"harbor"
addons.harbor.helmRepo.tagπ
Type: string
"1.16.1-bb.0"
addons.harbor.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Jaeger Package
addons.harbor.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.harbor.valuesπ
Type: object
{}
Description: Values to pass through to Habor chart: https://repo1.dso.mil/big-bang/product/packages/harbor.git
addons.harbor.postRenderersπ
Type: list
[]
Description: Post Renderers. See docs/postrenders.md
addons.thanos.enabledπ
Type: bool
false
Description: Toggle deployment of thanos
addons.thanos.sso.enabledπ
Type: bool
false
Description: Toggle SSO for Thanos on and off
addons.thanos.sso.client_idπ
Type: string
""
Description: OIDC Client ID to use for Thanos
addons.thanos.sso.client_secretπ
Type: string
""
Description: OIDC Client Secret to use for Thanos
addons.thanos.objectStorage.endpointπ
Type: string
""
Description: S3 compatible endpoint to use for connection information. examples: βs3.amazonaws.comβ βs3.us-gov-west-1.amazonaws.comβ βminio.minio.svc.cluster.local:9000β Note: Thanos does not require protocol prefix for URL.
addons.thanos.objectStorage.regionπ
Type: string
""
Description: S3 compatible region to use for connection information.
addons.thanos.objectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint.
addons.thanos.objectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
addons.thanos.objectStorage.bucketπ
Type: string
""
Description: Bucket Name for Thanos examples: βThanos-metricsβ
addons.thanos.objectStorage.insecureπ
Type: bool
false
Description: Whether or not objectStorage connection should require HTTPS, if connecting to in-cluster object
addons.thanos.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.thanos.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/thanos.git"
addons.thanos.git.tagπ
Type: string
"15.9.1-bb.3"
addons.thanos.git.pathπ
Type: string
"./chart"
addons.thanos.helmRepo.repoNameπ
Type: string
"registry1"
addons.thanos.helmRepo.chartNameπ
Type: string
"thanos"
addons.thanos.helmRepo.tagπ
Type: string
"15.9.1-bb.3"
addons.thanos.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the Thanos Package
addons.thanos.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.thanos.valuesπ
Type: object
{}
addons.thanos.postRenderersπ
Type: list
[]
addons.externalSecrets.enabledπ
Type: bool
false
Description: Toggle deployment of external secrets
addons.externalSecrets.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.externalSecrets.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/external-secrets.git"
addons.externalSecrets.git.tagπ
Type: string
"0.14.4-bb.0"
addons.externalSecrets.git.pathπ
Type: string
"./chart"
addons.externalSecrets.helmRepo.repoNameπ
Type: string
"registry1"
addons.externalSecrets.helmRepo.chartNameπ
Type: string
"external-secrets"
addons.externalSecrets.helmRepo.tagπ
Type: string
"0.14.4-bb.0"
addons.externalSecrets.fluxπ
Type: object
{}
Description: Override flux settings for this package
addons.externalSecrets.ingressπ
Type: object
gateway: ''
Description: Redirect the package ingress to a specific Istio Gateway (listed in istio.gateways
). The default is βpublicβ.
addons.externalSecrets.valuesπ
Type: object
{}
addons.externalSecrets.postRenderersπ
Type: list
[]
addons.alloy.enabledπ
Type: bool
false
Description: Toggle deployment of grafana alloy
addons.alloy.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.alloy.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/alloy.git"
addons.alloy.git.tagπ
Type: string
"2.0.16-bb.2"
addons.alloy.git.pathπ
Type: string
"./chart"
addons.alloy.helmRepo.repoNameπ
Type: string
"registry1"
addons.alloy.helmRepo.chartNameπ
Type: string
"k8s-monitoring"
addons.alloy.helmRepo.tagπ
Type: string
"2.0.16-bb.2"
addons.alloy.valuesπ
Type: object
{}
addons.alloy.postRenderersπ
Type: list
[]
addons.alloy.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the alloy package
addons.mimir.enabledπ
Type: bool
false
Description: Toggle deployment of Mimir
addons.mimir.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
addons.mimir.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/mimir.git"
addons.mimir.git.tagπ
Type: string
"5.5.1-bb.11"
addons.mimir.git.pathπ
Type: string
"./chart"
addons.mimir.helmRepo.repoNameπ
Type: string
"registry1"
addons.mimir.helmRepo.chartNameπ
Type: string
"mimir"
addons.mimir.helmRepo.tagπ
Type: string
"5.5.1-bb.11"
addons.mimir.enterpriseπ
Type: object
enabled: false
Description: Enable Mimir Enterprise
addons.mimir.minioObjectStorageπ
Type: object
configSecret:
accessKey: minio
secretKey: minio123
defaultUserCredentials:
password: supersecret
username: mimir-user
enabled: false
Description: Enable Big Bang MinIO dependency chart for Mimir
addons.mimir.minioObjectStorage.configSecretπ
Type: object
accessKey: minio
secretKey: minio123
Description: MinIO root credentials
addons.mimir.s3ObjectStorageπ
Type: object
accessKey: ''
accessSecret: ''
bucketName: ''
enabled: false
endpoint: ''
insecure: false
region: ''
Description: Configure Mimir to use S3 bucket
addons.mimir.s3ObjectStorage.regionπ
Type: string
""
Description: S3 compatible region to use for connection information.
addons.mimir.s3ObjectStorage.accessKeyπ
Type: string
""
Description: Access key for connecting to object storage endpoint.
addons.mimir.s3ObjectStorage.accessSecretπ
Type: string
""
Description: Secret key for connecting to object storage endpoint. Unencoded string data. This should be placed in the secret values and then encrypted
addons.mimir.s3ObjectStorage.bucketNameπ
Type: string
""
Description: Bucket name for the Mimir bucket as YAML
addons.mimir.s3ObjectStorage.insecureπ
Type: bool
false
Description: Whether or not objectStorage connection should require HTTPS, if connecting to in-cluster object
addons.mimir.valuesπ
Type: object
{}
addons.mimir.postRenderersπ
Type: list
[]
addons.mimir.fluxπ
Type: object
{}
Description: Flux reconciliation overrides specifically for the alloy package
wrapperπ
Type: object
git:
path: chart
repo: https://repo1.dso.mil/big-bang/product/packages/wrapper.git
tag: 0.4.12
helmRepo:
chartName: wrapper
repoName: registry1
tag: 0.4.12
sourceType: git
Description: Wrapper chart for integrating Big Bang components alongside a package
wrapper.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
wrapper.helmRepo.repoNameπ
Type: string
"registry1"
Description: Repository holding OCI chart, corresponding to helmRepositories
name
wrapper.helmRepo.chartNameπ
Type: string
"wrapper"
Description: Name of the OCI chart in repo
wrapper.helmRepo.tagπ
Type: string
"0.4.12"
Description: Tag of the OCI chart in repo
wrapper.git.repoπ
Type: string
"https://repo1.dso.mil/big-bang/product/packages/wrapper.git"
Description: Git repo holding the wrapper helm chart, example: https://repo1.dso.mil/big-bang/product/packages/wrapper
wrapper.git.pathπ
Type: string
"chart"
Description: Path inside of the git repo to find the helm chart, example: chart
wrapper.git.tagπ
Type: string
"0.4.12"
Description: Git tag to check out. Takes precedence over branch. More info, example: 0.0.2
packagesπ
Type: object
sample:
configMaps: {}
dependsOn: []
enabled: false
flux: {}
git:
branch: null
commit: null
credentials:
caFile: ''
knownHosts: ''
password: ''
privateKey: ''
publicKey: ''
username: ''
existingSecret: ''
path: null
repo: null
semver: null
tag: null
helmRepo:
chartName: null
repoName: null
tag: null
istio: {}
kustomize: false
monitor: {}
network: {}
postRenderers: []
secrets: {}
sourceType: git
values: {}
wrapper:
enabled: false
postRenderers: []
Description: Packages to deploy with Big Bang @default - β{}β
packages.sample.sourceTypeπ
Type: string
"git"
Description: Choose source type of βgitβ or βhelmRepoβ
packages.sample.wrapper.postRenderersπ
Type: list
[]
Description: After deployment, patch wrapper resources. More info
packages.sample.kustomizeπ
Type: bool
false
Description: Use a kustomize deployment rather than Helm
packages.sample.helmRepoπ
Type: object
chartName: null
repoName: null
tag: null
Description: HelmRepo source is supported as an option for Helm deployments. If both git
and helmRepo
are provided git
will take precedence.
packages.sample.helmRepo.repoNameπ
Type: string
nil
Description: Name of the HelmRepo specified in helmRepositories
packages.sample.helmRepo.chartNameπ
Type: string
nil
Description: Name of the chart stored in the Helm repository
packages.sample.helmRepo.tagπ
Type: string
nil
Description: Tag of the chart in the Helm repo, required
packages.sample.gitπ
Type: object
branch: null
commit: null
credentials:
caFile: ''
knownHosts: ''
password: ''
privateKey: ''
publicKey: ''
username: ''
existingSecret: ''
path: null
repo: null
semver: null
tag: null
Description: Git source is supported for both Helm and Kustomize deployments. If both git
and helmRepo
are provided git
will take precedence.
packages.sample.git.repoπ
Type: string
nil
Description: Git repo URL holding the helm chart for this package, required if using git
packages.sample.git.commitπ
Type: string
nil
Description: Git commit to check out. Takes precedence over semver, tag, and branch. More info
packages.sample.git.semverπ
Type: string
nil
Description: Git semVer tag expression to check out. Takes precedence over tag. More info
packages.sample.git.tagπ
Type: string
nil
Description: Git tag to check out. Takes precedence over branch. More info
packages.sample.git.branchπ
Type: string
nil
Description: Git branch to check out. More info.
packages.sample.git.pathπ
Type: string
nil
Description: Path inside of the git repo to find the helm chart or kustomize
packages.sample.git.existingSecretπ
Type: string
""
Description: Optional, alternative existing secret to use for git credentials, must be in the appropriate format: https://toolkit.fluxcd.io/components/source/gitrepositories/#https-authentication
packages.sample.git.credentialsπ
Type: object
caFile: ''
knownHosts: ''
password: ''
privateKey: ''
publicKey: ''
username: ''
Description: Optional, alternative Chart created secrets with user defined values
packages.sample.git.credentials.usernameπ
Type: string
""
Description: HTTP git credentials, both username and password must be provided
packages.sample.git.credentials.caFileπ
Type: string
""
Description: HTTPS certificate authority file. Required for any repo with a self signed certificate
packages.sample.git.credentials.privateKeyπ
Type: string
""
Description: SSH git credentials, privateKey, publicKey, and knownHosts must be provided
packages.sample.fluxπ
Type: object
{}
Description: Override flux settings for this package
packages.sample.postRenderersπ
Type: list
[]
Description: After deployment, patch package resources. More info
packages.sample.dependsOnπ
Type: list
[]
Description: Specify dependencies for the package. Only used for HelmRelease, does not effect Kustomization. See here for a reference.
packages.sample.istioπ
Type: object
{}
Description: Package details for Istio. See wrapper values for settings.
packages.sample.monitorπ
Type: object
{}
Description: Package details for monitoring. See wrapper values for settings.
packages.sample.networkπ
Type: object
{}
Description: Package details for network policies. See wrapper values for settings.
packages.sample.secretsπ
Type: object
{}
Description: Secrets that should be created prior to package installation. See wrapper values for settings.
packages.sample.configMapsπ
Type: object
{}
Description: ConfigMaps that should be created prior to package installation. See wrapper values for settings.
packages.sample.valuesπ
Type: object
{}
Description: Values to pass through to package Helm chart