Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 522 Bytes

cert-manager-cdk8s.md

File metadata and controls

32 lines (18 loc) · 522 Bytes

Use HTTPS With cert-manager And cdk8s

Do

cd cdk8s

cat app.go

cat main.go

yq --inplace ".tls.enabled = true" app.yaml

cdk8s synth --output ../yaml/dev --validate 

cd ..

cat yaml/dev/cncf-demo.k8s.yaml

kubectl --namespace dev apply --filename yaml/dev

kubectl --namespace dev \
    get issuers,certificaterequests,certificates,orders,secrets

echo "https://cncf-demo-dev.$DOMAIN"

# Open it in a browser

Continue The Adventure