Hi everyone. What's wrong ? I am trying to create CertManager chart
--------------------------------- --------------------------------- --------------------------------- --------------------------------- --------------------------------- --------------------------------- ---------------------------------
Diagnostics:
pulumiđŸ˜›ulumi:Stack (pulumi-kuber-dev):
error: Running program '/home/nariman/Desktop/LPDF/pulumi-kuber' failed with an unhandled exception:
Error: failed to register new resource cert-manager [kuber:CertManager]: 3 INVALID_ARGUMENT: Type 'kuber:CertManager' is not a valid type token (must have format '*:*:*')
--------------------------------- --------------------------------- --------------------------------- --------------------------------- --------------------------------- --------------------------------- ---------------------------------
export class CertManager extends pulumi.CustomResource implements CertManagerOutputs {
readonly meta: pulumi.Output<abstractions.HelmMeta>;
constructor(name: string, props: CertManagerInputs, opts?: pulumi.CustomResourceOptions) {
super('kuber:CertManager', name, props, opts);
this.meta = pulumi.output({
chart: 'cert-manager',
version: 'v1.7.1',
repo: '
https://charts.jetstack.io',
});
const chart = new k8s.helm.v3.Chart(name,
{ namespace: props.namespace, chart: this.meta.chart, version: this.meta.version, fetchOpts: { repo: this.meta.repo, },
values: { replicaCount: 2, installCRDs: true, webhook: { timeoutSeconds: 30, }, }, }, {parent: this} );