important-leather-28796
03/11/2019, 3:18 PM## IMPORTANT: you MUST install the cert-manager CRDs **before** installing the
## cert-manager Helm chart
$ kubectl apply \
-f <https://raw.githubusercontent.com/jetstack/cert-manager/release-0.6/deploy/manifests/00-crds.yaml>
https://github.com/helm/charts/tree/master/stable/cert-manager#installing-the-chartbetter-rainbow-14549
03/11/2019, 3:31 PMimportant-leather-28796
03/11/2019, 3:31 PMbetter-rainbow-14549
03/11/2019, 3:34 PMimportant-leather-28796
03/11/2019, 3:35 PMbetter-rainbow-14549
03/11/2019, 3:35 PMimportant-leather-28796
03/11/2019, 3:36 PMbetter-rainbow-14549
03/11/2019, 3:36 PMcool-egg-852
03/11/2019, 3:46 PMimport * as k8s as "@pulumi/kubernetes";
new k8s.yaml.ConfigFile("app.yaml");
better-rainbow-14549
03/11/2019, 3:51 PMimportant-leather-28796
03/11/2019, 3:52 PMdependsOn
for the chartbetter-rainbow-14549
03/11/2019, 3:54 PMimportant-leather-28796
03/11/2019, 3:54 PMconfigFile.resources
?better-rainbow-14549
03/11/2019, 3:55 PMimportant-leather-28796
03/11/2019, 3:55 PMbetter-rainbow-14549
03/11/2019, 3:56 PMconst crds = new kubernetes.yaml.ConfigFile("test.yaml");
{ provider: clusterProvider, dependsOn: [crds] }
important-leather-28796
03/11/2019, 3:56 PMConfigFile extends CollectionComponentResource
// install the crds first
// @see <https://github.com/helm/charts/tree/master/stable/cert-manager#installing-the-chart>
const crds = new k8s.yaml.ConfigFile(
'<https://raw.githubusercontent.com/jetstack/cert-manager/release-0.6/deploy/manifests/00-crds.yaml>',
undefined,
opts,
)
creamy-potato-29402
03/11/2019, 7:12 PM