sparse-intern-71089
04/11/2022, 8:32 AMprehistoric-activity-61023
04/11/2022, 8:36 AMvictorious-continent-984
04/11/2022, 9:02 AMprehistoric-activity-61023
04/11/2022, 9:21 AMgreat-sunset-355
04/14/2022, 12:48 PMpulumi_kubernetes.helm.v3.Release
instead of Chart
prehistoric-activity-61023
04/14/2022, 1:06 PMvictorious-continent-984
04/14/2022, 1:17 PMRelease
polite-night-3633
07/25/2022, 6:52 AMHelmRelease
approach? I'm running into the following problem:
Use Helm CLI to investigate.: failed to become available within allocated timeout. Error: Helm Release monitoring/kube-prometheus: unable to build kubernetes objects from new release manifest: unable to recognize "":
my code:
new k8s.helm.v3.Release(
`${name}-kube-prometheus`,
{
chart: 'kube-prometheus-stack',
version: '37.3.0',
namespace: this.namespace,
createNamespace: false,
skipCrds: true,
repositoryOpts: { repo: '<https://prometheus-community.github.io/helm-charts>' },
},
{ ...this.OPTS, dependsOn: namespace },
);
I was trying to play with the skipAwait
flag but it doesn't change the result. CRDs are all installed correctly. Also setting a name
for the HelmRelease
didn't change anything. Any ideas?victorious-continent-984
07/25/2022, 7:58 AMvictorious-continent-984
07/25/2022, 7:58 AMdependsOn
should be an arrayvictorious-continent-984
07/25/2022, 8:00 AMpolite-night-3633
07/28/2022, 12:01 PMdependsOn
key: documentation allows both array and single item values
/**
* An optional additional explicit dependencies on other resources.
*/
dependsOn?: Input<Input<Resource>[]> | Input<Resource>;
the k8s provider is set within the this.OPTS
object and also works fine for any other kubernetes resource I'm spinning up using pulumi