Skip to main content
Prime feature only
This feature is only available with a Prime subscription. See plans or contact sales.

Quickstart demo stack on Kubernetes

In addition to the kubriX OSS installation process, we offer the following options:

⚠️ Every variable explained in this document needs to get added in the kubrix-installer-secrets as described in the kubriX OSS installation process.

Optional: cert-manager DNS-01 challenge configuration

If you want to use DNS-01 challenge instead of HTTP-01 challenge for the ACME protocol, set the DNS provider which cert-manager should use for DNS-01 challenge.

default: none
supported: aws

export KUBRIX_CERT_MANAGER_DNS_PROVIDER="aws"

You then also need to set your DNS provider credentials depending on your DNS provider:

aws

kubectl create ns cert-manager
kubectl create secret generic route53-credentials-secret -n cert-manager \
--from-literal=aws-access-key-id='your-access-key-id' \
--from-literal=aws-secret-access-key='your-secret-access-key'