fast-easter-23401
03/18/2022, 5:27 PMfamous-salesclerk-74711
03/18/2022, 11:16 PMurn
name conflicts when creating a brand new resource…where there DEFINITELY isn’t an existing resource with that name?echoing-angle-67526
03/18/2022, 11:51 PMbillowy-horse-79629
03/23/2022, 10:57 AMpulumi up
action on Github Actions:
+ kubernetes:<http://helm.sh/v3:Release|helm.sh/v3:Release> eks-bootstrap creating error: can't create Helm Release with unreachable cluster: unable to load Kubernetes client configuration from kubeconfig file: invalid configuration: no configuration has been provided, try setting KUBERNETES_MASTER environment variable
Here is the code i’m creating my Helm Release (occurs after the eks k8s cluster creation)
export function createHelmBootstrapChart(stackName: string) {
const releaseArgs: k8s.helm.v3.ReleaseArgs = {
atomic: true,
name: "eks-bootstrap",
chart: "./charts/eks-bootstrap-chart",
dependencyUpdate: true,
namespace: "kube-system",
valueYamlFiles: [new FileAsset(`./charts/eks-bootstrap-chart/values-${stackName}.yaml`)]
}
new k8s.helm.v3.Release("eks-bootstrap", releaseArgs)
}
Do you guys know how to set the Kubeconfig ? because it looks like the kubeconfig is missing during runtime on the github action.billowy-horse-79629
03/23/2022, 1:10 PMboundless-telephone-75738
03/23/2022, 10:10 PMcrooked-pillow-11944
03/23/2022, 10:17 PMbest-state-21371
03/24/2022, 4:36 PMbusy-journalist-6936
03/24/2022, 7:18 PMUpdating (keycloak):
Type Name Status Info
pulumi:pulumi:Stack tkl-keycloak-keycloak **failed** 1 error
└─ kubernetes:kustomize:Directory keycloak
+ ├─ kubernetes:core/v1:Namespace keycloak **creating failed** 1 error
big-potato-91793
03/24/2022, 9:10 PMTypeError: Invalid Version:
at new SemVer (/builds/${PROJECT}/pulumi/node_modules/semver/semver.js:332:11)
at compare (/builds/${PROJECT}/pulumi/node_modules/semver/semver.js:647:10)
at Function.eq (/builds/${PROJECT}/pulumi/node_modules/semver/semver.js:693:10)
at sameVersion (/builds/${PROJECT}/pulumi/node_modules/@pulumi/runtime/rpc.ts:703:57)
at register (/builds/${PROJECT}/pulumi/node_modules/@pulumi/runtime/rpc.ts:718:17)
at Object.registerResourcePackage (/builds/${PROJECT}/pulumi/node_modules/@pulumi/runtime/rpc.ts:780:5)
at Object.<anonymous> (/builds/${PROJECT}/pulumi/node_modules/@ticketmaster/pipelog-crds/build/index.js:25:16)
at Module._compile (node:internal/modules/cjs/loader:1103:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1155:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
rhythmic-whale-48997
03/25/2022, 9:55 AMenvironment[KUBECONFIG] value: An error occurred decoding 'command.environment[KUBECONFIG] value': Cannot decode Object{} to type string; it isn't a struct, and no custom decoder exists
Is there some better way to provide kubeconfig to the command and I would like to avoid having it on filesystem.freezing-quill-32178
03/28/2022, 8:48 AMnew k8s.helm.v3.Release(…)…
for XYZ
Helm chart… if you don’t specify the name
and leave Pulumi to autogenerate it, or even specify the name
whichever… and use the resource names later on it the program without inferring the name based on the prefix and whatever the chart is?breezy-bear-50708
03/28/2022, 2:11 PMstandard
StorageClass
. Haven't been able to find a good, automated way to do this. import
requires the resource fields match exactly so it's not particularly helpful without lots of manual work. Currently we're using a dynamic provider to patch the resource but it's pretty flaky.sparse-apartment-71989
03/28/2022, 11:45 PMconst dockerSecret = new Secret('docker-hub-credentials',
{
data: {
'username': docker_username, // Base64-encoded value
'password': docker_password // Base64-encoded value
}
},
{
provider: k3sProvider
}
)
In the above example, the secret created is docker-hub-credentials-m4vtegxw. In other, non-Pulumi programs, I have to remember to update the referenced secret name to the full Pulumi-generated name value.
I’d expected to be able to set a name property that would be analogous to setting a name
property on an S3 Bucket to fix the name.billowy-horse-79629
03/29/2022, 9:18 AMadorable-action-51248
04/02/2022, 7:56 AMhelm upgrade
does.chilly-plastic-75584
04/04/2022, 9:23 PMcurved-morning-41391
04/05/2022, 10:14 PMcuddly-football-51817
04/06/2022, 11:35 AMgreat-sunset-355
04/06/2022, 1:32 PMwarning: This resource contains Helm hooks that are not currently supported by Pulumi. The resource will be created, but any hooks will not be executed. Hooks support is tracked at <https://github.com/pulumi/pulumi-kubernetes/issues/555> -- This warning can be disabled by setting the PULUMI_K8S_SUPPRESS_HELM_HOOK_WARNINGS environment variable
kubernetes resource 3.18.0 77 MB n/a 22 minutes ago
most-lighter-95902
04/06/2022, 4:00 PMeks
package and it doesn’t seem to install the latest Kubernetes version?most-lighter-95902
04/06/2022, 4:01 PMeks
package doesn’t seem to find it on new install?most-lighter-95902
04/06/2022, 4:01 PMcrooked-pillow-11944
04/06/2022, 4:08 PMbulky-cat-1703
04/06/2022, 5:45 PMnutritious-petabyte-61303
04/07/2022, 1:18 AMnutritious-petabyte-61303
04/07/2022, 1:19 AMnutritious-petabyte-61303
04/07/2022, 1:19 AMnutritious-petabyte-61303
04/07/2022, 1:20 AMkind-room-82948
04/14/2022, 9:32 PMkind-room-82948
04/14/2022, 9:32 PMbillowy-army-68599
04/14/2022, 9:42 PMwe would prefer if that change was just automatically rolled back to the previous good stateDo you mean the Pulumi side of things, or the Kubernetes side of things? pulumi's await logic will mean that the old deployment itself will still be running
kind-room-82948
04/14/2022, 9:43 PMnutritious-petabyte-61303
04/18/2022, 9:09 PMbillowy-army-68599
04/18/2022, 9:15 PMnutritious-petabyte-61303
04/18/2022, 9:23 PMbillowy-army-68599
04/18/2022, 9:26 PMnutritious-petabyte-61303
04/18/2022, 9:26 PMbillowy-army-68599
04/18/2022, 9:27 PMnutritious-petabyte-61303
04/18/2022, 9:27 PMwait for resource X to deploy before deploying resource Y
). This is unavoidable in most scenarios, but in the context of k8s it might not make as much senseOkay, if that's happening it's a bug. Please file issue and let me know immediately, this is the first I'm hearing of itIt's been a few months since I last hit the issue and I no longer remember what it was specifically, but I'll be sure to do so the next time it happens.
kind-room-82948
04/18/2022, 9:33 PMbillowy-army-68599
04/18/2022, 9:33 PMnutritious-petabyte-61303
04/18/2022, 9:34 PMbillowy-army-68599
04/18/2022, 9:36 PMnutritious-petabyte-61303
04/18/2022, 9:36 PMbillowy-army-68599
04/18/2022, 9:37 PMnutritious-petabyte-61303
04/18/2022, 9:38 PM