lively-needle-84406
10/06/2022, 2:15 PMexport const istioBaseChart = new k8s.helm.v3.Release("istio-base", {
chart: "base",
version: istioVersion,
namespace: istioNamespace.metadata.name,
repositoryOpts: {
repo: "<https://istio-release.storage.googleapis.com/charts>",
},
}, {
dependsOn: [cluster, istioNamespace]
});
Istiod:
export const istiod = new k8s.helm.v3.Chart("istiod", {
chart: "istiod",
version: istioVersion,
namespace: istioNamespace.metadata.name,
fetchOpts: {
repo: "<https://istio-release.storage.googleapis.com/charts>",
},
}, {
dependsOn: [cluster, istioNamespace, istioBaseChart]
});
The error I am receiving is:
kubernetes:<http://helm.sh/v3:Release|helm.sh/v3:Release> (istio-base):
error: could not get server version from Kubernetes: Get "<https://B042EE83435E804CA59AE3C4ACC5C169.sk1.us-west-1.eks.amazonaws.com/version?timeout=32s>": dial tcp: lookup <http://xxxxxxxxxxxxxx.sk1.us-west-1.eks.amazonaws.com|xxxxxxxxxxxxxx.sk1.us-west-1.eks.amazonaws.com> on [xxxx:xxxx:xxx:xxxx::x]:xx: no such host
To me, this looks like the dependency on the cluster and other resources is not being honored. Any ideas how to ensure the cluster and other resources get created properly before applying these charts?billowy-army-68599
10/06/2022, 2:58 PMlively-needle-84406
10/06/2022, 3:41 PM