few-apartment-82932
06/01/2020, 2:14 PMselector
in the code, and the README shows svc/frontend
for the port forwarding which does not exist there), but even deploying locally on minikube I can't access the nginx forward thereabundant-airplane-93796
06/04/2020, 1:20 AMpulumi preview
giving different behavior to pulumi up
when using GKE? I'm finding that preview
fails to properly use gcloud
to authenticate with the cluster, causing the preview to not see any existing kubernetes resources. up
on the other hand works as expectedfamous-jelly-72366
06/04/2020, 7:53 AMhelm repo add ...
dazzling-sundown-39670
06/04/2020, 1:09 PMbitnami/phpmyadmin
but the maximum upload size is too low for me and they don't offer a way to set it. So I would like to override the config file with a different oneminiature-rose-15269
06/04/2020, 8:11 PMbitter-dentist-28132
06/05/2020, 2:23 AMconfigured Kubernetes cluster is unreachable: unable to load schema information from the API server: the server has asked for the client to provide credentials
. any idea why this might be the case? i'm explicitly getting the kubeconfig and providing it as the provider
, so it's not like some sort of ambient credential problem.jolly-bear-34819
06/05/2020, 10:47 AMnew k8s.helm.v3.Chart(name, {
chart: "nginx-ingress",
version: "1.36.3",
fetchOpts: {
repo: "<https://kubernetes-charts.storage.googleapis.com>",
},
values: {
controller: {
service: {
loadBalancerIP: props.backendIpAddress,
annotations: {
"<http://service.beta.kubernetes.io/azure-load-balancer-internal|service.beta.kubernetes.io/azure-load-balancer-internal>": "true"
}
},
}
},
})
In my case the cluster gets recreated and the Kubernetes provider tries to deploy the helm chart on the new cluster with the same IP address.
Because the IP address is still allocated by the old loadbalancer, it will fail.
Do you got any ideas on how to delete the old service/loadbalancer before the new one gets created?famous-jelly-72366
06/05/2020, 2:54 PMbusy-soccer-65968
06/05/2020, 7:10 PMmetadeta.name
to my secret. Then my deployment diff shows [secret]
and does a delete-replace instead of simply updated the deployment spec. If I do not include metadata.name
in my secret and update the stringData
then the deployent does an update instead of delete replace. It also, does not show the [secret]
diff. Is this expect?quiet-state-42882
06/07/2020, 6:04 AMfamous-jelly-72366
06/09/2020, 2:02 PM<http://apiextensions.k8s.io/v1beta1/CustomResourceDefinition|apiextensions.k8s.io/v1beta1/CustomResourceDefinition>
being deprecated? I tried doing a helm chart transform to fix this, but seems like the cert-manager webhook doesn't work with the updated v1 :Sfamous-jelly-72366
06/10/2020, 9:51 AMbland-lamp-16797
06/10/2020, 3:11 PMhelm list
?bland-lamp-16797
06/10/2020, 3:12 PM<http://app.kubernetes.io/managed-by|app.kubernetes.io/managed-by>: pulumi
somehowbland-lamp-16797
06/10/2020, 3:18 PMlabel validation error: key "app.kubernetes.io/managed-by" must equal "Helm": current value is "pulumi";
bland-lamp-16797
06/10/2020, 3:21 PMerror: apiVersion "extensions/v1beta1/Deployment" was removed in Kubernetes 1.16. Use "apps/v1/Deployment" instead.
full-dress-10026
06/10/2020, 4:52 PMnew aws.eks.NodeGroup()
to eksCluster.createNodeGroup
and noticing that createNodeGroup
does not include the nodeRoleArn
property in the args object. How would I provide an IAM role arn to a node group created with the createNodeGroup
method?full-dress-10026
06/10/2020, 5:19 PMfamous-jelly-72366
06/11/2020, 11:28 AMminiature-rose-15269
06/11/2020, 2:22 PMlimited-rainbow-51650
06/11/2020, 2:28 PMfamous-jelly-72366
06/12/2020, 12:22 PMkubernetes:<http://apiextensions.k8s.io:CustomResourceDefinition|apiextensions.k8s.io:CustomResourceDefinition> (<http://certificaterequests.cert-manager.io|certificaterequests.cert-manager.io>):
error: Duplicate resource URN 'urn:pulumi:k8s::tms-pulumi::kubernetes:<http://helm.sh/v2:Chart$kubernetes:apiextensions.k8s.io/v1beta1:CustomResourceDefino/v1beta1:CustomResourceDefinition::certificaterequests.cert-manager.io';|helm.sh/v2:Chart$kubernetes:apiextensions.k8s.io/v1beta1:CustomResourceDefino/v1beta1:CustomResourceDefinition::certificaterequests.cert-manager.io';> try giving it a unique name
limited-rainbow-51650
06/12/2020, 2:57 PMcommand:
- bash
- -ec
- |
# Execute entrypoint as usual after obtaining ZOO_SERVER_ID based on POD hostname
HOSTNAME=`hostname -s`
if [[ $HOSTNAME =~ (.*)-([0-9]+)$ ]]; then
ORD=${BASH_REMATCH[2]}
export ZOO_SERVER_ID=$((ORD+1))
else
echo "Failed to get index from hostname $HOST"
exit 1
fi
exec /entrypoint.sh /run.sh
salmon-ghost-86211
06/12/2020, 3:48 PMEnable Group Metrics Collection
. I want it enabled when it is created.
I am using the eks
APIs and calling eks.Cluster
and then cluster.createNodeGroup
.
I have been able to retrieve from the nodeGroup properties the actual ASG name, but I am not sure how to either update an ASG to have the metrics enabled or to enable metrics on nodeGroup creation.gorgeous-elephant-23271
06/13/2020, 9:33 PMpulumi state delete <urn>
I need to recurse through each resource and delete leaves firstgorgeous-elephant-23271
06/13/2020, 9:42 PMpulumi stack rm <stack> --force
works, but feels a little ugly as I'm recreating the entire thingcalm-farmer-19058
06/18/2020, 7:42 PMhundreds-portugal-17080
06/18/2020, 10:20 PMbusy-soccer-65968
06/19/2020, 9:58 PMsalmon-ghost-86211
06/22/2020, 3:59 PMsalmon-ghost-86211
06/22/2020, 3:59 PMgorgeous-egg-16927
06/22/2020, 4:03 PMbreezy-hamburger-69619
06/22/2020, 4:45 PMpulumi/eks
to capture your needs?
Seems that exposing the MetricsCollection as an option for the ASG should do the trick.salmon-ghost-86211
06/23/2020, 1:43 PM