Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

New directory to host a new helm tutorial/quickstart #119

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions k8s/quickstart-helm/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# You can enable config/features that affect all services here.
global:
k8s:
# -- This is the value of your clusters `kubeadm init --service-dns-domain` flag
clusterDomain: cluster.local
spire:
# -- The name of the Kubernetes cluster (`kubeadm init --service-dns-domain`)
clusterName: demo-cluster
# -- The trust domain to be used for the SPIFFE identifiers
trustDomain: example.org
# -- Set the jwt issuer
jwtIssuer: oidc-discovery.example.org
# -- Override all instances of bundleConfigMap
bundleConfigMap: ""

image:
# -- Override all Spire image registries at once
registry: ""

# telemetry:
# prometheus:
# enabled: true
# podMonitor:
# enabled: true
# # -- Allows to install the PodMonitor in another namespace then the spire components are installed into.
# namespace: "kube-prometheus-system"
# labels: {}

# subcharts
spire-server:
# -- Enables deployment of SPIRE Server
enabled: true
nameOverride: server

controllerManager:
# -- Enables deployment of Controller Manager
enabled: true

spire-agent:
# -- Enables deployment of SPIRE Agent(s)
enabled: true
nameOverride: agent

spiffe-csi-driver:
# -- Enables deployment of CSI driver
enabled: true

spiffe-oidc-discovery-provider:
# -- Enables deployment of OIDC discovery provider
enabled: false

tornjak-frontend:
# -- Enables deployment of Tornjak frontend/UI (Not for production)
enabled: false