Deployment
To deploy the chart simply run:
helm install ctx-pipeline oci://registry-1.docker.io/contextal/ctx-pipeline
Remember to --set
values as indicated in the previous sections
Note: If you've enabled the Console deployment (console.create
set to true
) the following additionally steps are required:
- Generate an RSA privake key for the JWT cookie
openssl genrsa -out private.pem 2048
- Extract the RSA public key from it
openssl rsa -in private.pem -out public.pem -pubout
- Create a k8s secret containing both
kubectl create secret generic console-jwt --from-file=private=./private.pem --from-file=public=./public.pem