ancient-megabyte-79588
03/31/2020, 4:59 PMconfigMap
The configMap
above generates this error and there isn't a lot in the details to suggest what is wrong.ancient-megabyte-79588
03/31/2020, 5:00 PMdetails
that are output?ancient-megabyte-79588
03/31/2020, 5:02 PMdetails
color console, are the red lines existing and green the intended replacement and that is what the task is suggesting won't work?calm-greece-42329
04/01/2020, 7:04 PMcalm-greece-42329
04/01/2020, 7:04 PMancient-megabyte-79588
04/01/2020, 7:10 PMexport consts serviceName = "<something you generate>-svc";
at the top of your pulumi app?calm-greece-42329
04/01/2020, 7:11 PMancient-megabyte-79588
04/01/2020, 7:12 PMlabel
value into a env var .. labels are the native grouping mechanism in k8scalm-greece-42329
04/01/2020, 7:12 PMcalm-greece-42329
04/01/2020, 7:13 PMconst nameSuffix = `-${pulumi.getProject()}-${pulumi.getStack()}
and mash it into all of my metadatacalm-greece-42329
04/01/2020, 7:16 PMbillowy-army-68599
ancient-megabyte-79588
04/01/2020, 9:10 PMhundreds-portugal-17080
04/04/2020, 5:18 PMboundless-morning-59924
04/07/2020, 9:32 AMbreezy-hamburger-69619
04/07/2020, 4:29 PMpulumi/eks
[1] and is available in NPM [2] under version 0.18.25-alpha.1586233126
In this set of changes, we’ve added:
• Support for proxied environments
• Role-based kubeconfigs
• And swapped out aws-iam-authenticator
with aws eks get token
used in kubeconfig auth
We would love to hear back from pulumi/eks
users on their experience using this version to better understand how these changes work with you and your clusters.
Please let us know any feedback or open up a new issue [3].
Thank you!
1 - https://github.com/pulumi/pulumi-eks/blob/master/CHANGELOG.md#unreleased
2 - https://www.npmjs.com/package/@pulumi/eks
3 - https://github.com/pulumi/pulumi-eks/issues/newbreezy-gold-44713
04/07/2020, 11:59 PMkubectl create secret tls myservice-tls --cert=myservice.cert.pem --key=myservice.key.pem --dry-run -o yaml
. I’ve tried manually constructing a TLS secret with the exact contents of the yaml file, but it doesn’t work for some reason. I feel like I must be missing something obvious, any insights?better-rainbow-14549
04/08/2020, 12:49 PMadditionalSecretOutputs
- keyvault secrets, service principal passwords etc but when i get to kubernetes.Provider
it doesn't accept that property in ResourceOptionsancient-megabyte-79588
04/08/2020, 8:31 PMkind: ConfigMap
apiVersion: v1
metadata:
name: nginx-nginx-ingress-controller
namespace: kube-system
labels:
k8s-app: nginx-ingress-controller
data:
proxy-buffer-size: "128k"
proxy-buffers: "8 128k"
I've already got k8s resource in the cluster via manifest and I'm trying to import it so I can change it in pulumi, but I can't get the data
sections to match up and so pulumi won't let it work.ancient-megabyte-79588
04/08/2020, 8:32 PMexport const nginxIngressControllerConfigMap = new k8s.core.v1.ConfigMap("nginx-nginx-ingress-controller", {
metadata:{
name: "nginx-nginx-ingress-controller",
labels: {"k8s-app": "nginx-ingress-controller"},
namespace:"kube-system"
},
data: {
"proxy-buffer-size": "128k",
"proxy-buffers": "8 128k"
}
},{provider: k8sProvider, import: "kube-system/nginx-nginx-ingress-controller"});
ancient-megabyte-79588
04/08/2020, 8:32 PMkubernetes:core:ConfigMap (nginx-nginx-ingress-controller):
error: inputs to import do not match the existing resource
brainy-nest-61978
04/09/2020, 2:08 PMeager-pillow-75917
04/09/2020, 6:52 PMcool-egg-852
04/09/2020, 7:23 PMkubernetes:apps:StatefulSet vault/vault updating. [1/3] Waiting for StatefulSet update to roll out (2/2 Pods ready)
sticking around forever?fast-dinner-32080
04/10/2020, 4:20 PMhundreds-portugal-17080
04/12/2020, 4:17 PMhundreds-portugal-17080
04/12/2020, 5:27 PMancient-megabyte-79588
04/13/2020, 9:35 PMgorgeous-elephant-23271
04/14/2020, 8:06 PMacr
with kubectl
and referenced it in my PodBuilder
using pulumi/kuberentesx:
imagePullSecrets: [{
name: "acr",
}]
but then I'm still getting unauthorized: authentication required
when k8s is trying to pull the imagegorgeous-elephant-23271
04/14/2020, 8:06 PM