rke

How to fix ingress 404 default backend

我的梦境 提交于 2021-01-24 07:44:12
问题 I started to use Kubernetes few month ago and I actually migrate my microServices to my rancher cluster (RKE). Everything works good, my deployments are good and services too. I would like use ingress. Everything looks good, services are find by ingress and pods are find by services. However when I try to go to the website, I have a 404 error page from ingress controller. You can see my configuration for juste two paths : one nginx and on grafana. Someone knows how can i fix it and use

How to fix ingress 404 default backend

谁说胖子不能爱 提交于 2021-01-24 07:42:41
问题 I started to use Kubernetes few month ago and I actually migrate my microServices to my rancher cluster (RKE). Everything works good, my deployments are good and services too. I would like use ingress. Everything looks good, services are find by ingress and pods are find by services. However when I try to go to the website, I have a 404 error page from ingress controller. You can see my configuration for juste two paths : one nginx and on grafana. Someone knows how can i fix it and use

how do I enable mount propagation in Rancher - Kubernetes feature gates?

感情迁移 提交于 2020-01-16 06:31:48
问题 How can I enable feature gates for my cluster in Rancher 2.0? I am in need of enabling the --feature-gates MountPropagation=true . This will enable me to use storage solutions like StorageOS, CephFS, etc There are 2 use cases here : If the Rancher is setup already and running? If I am setting up the cluster from scratch? 回答1: Hello and hope this helps someone, After much googling and help from awesome people at Rancher I got the solution for this. Here is what you can do to set the feature

how do I enable mount propagation in Rancher - Kubernetes feature gates?

左心房为你撑大大i 提交于 2020-01-16 06:31:09
问题 How can I enable feature gates for my cluster in Rancher 2.0? I am in need of enabling the --feature-gates MountPropagation=true . This will enable me to use storage solutions like StorageOS, CephFS, etc There are 2 use cases here : If the Rancher is setup already and running? If I am setting up the cluster from scratch? 回答1: Hello and hope this helps someone, After much googling and help from awesome people at Rancher I got the solution for this. Here is what you can do to set the feature

Open port for internal_address in Rancher/Kubernates (RKE)?

这一生的挚爱 提交于 2019-12-11 17:30:36
问题 I have the following configuration to setup the cluster using Rancher (RKE). rancher-config.yml nodes: - address: 192.168.88.204 internal_address: 172.16.22.12 user: dockeruser role: [controlplane,worker,etcd] - address: 192.168.88.203 internal_address: 172.16.32.37 user: dockeruser role: [controlplane,worker,etcd] - address: 192.168.88.202 internal_address: 172.16.42.73 user: dockeruser role: [controlplane,worker,etcd] services: etcd: snapshot: true creation: 6h retention: 24h According