You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is generating two services, as load balancer:
| => KUBECONFIG=secrets/admin.conf helm install -n kube-system tmp-ingress ingress-nginx/ingress-nginx -f demo-ingress.yml
NAME: tmp-ingress
LAST DEPLOYED: Thu Dec 16 02:50:32 2021
NAMESPACE: kube-system
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
The ingress-nginx controller has been installed.
It may take a few minutes for the LoadBalancer IP to be available.
You can watch the status by running 'kubectl --namespace kube-system get services -o wide -w tmp-ingress-ingress-nginx-controller'
An example Ingress that makes use of the controller:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: example
namespace: foo
spec:
ingressClassName: nginx
rules:
- host: www.example.com
http:
paths:
- backend:
service:
name: exampleService
port:
number: 80
path: /
# This section is only required if TLS is to be enabled for the Ingress
tls:
- hosts:
- www.example.com
secretName: example-tls
If TLS is enabled for the Ingress, a Secret containing the certificate and key must also be provided:
apiVersion: v1
kind: Secret
metadata:
name: example-tls
namespace: foo
data:
tls.crt: <base64 encoded cert>
tls.key: <base64 encoded key>
type: kubernetes.io/tls
and then the app
| ~/Documents/code/ubloquity/wireguard/rancher @ jperez-mbp (jperez)
| => KUBECONFIG=secrets/admin.conf kubectl apply -f demo-app.yml
service/hello-kubernetes-custom unchanged
deployment.apps/hello-kubernetes-custom unchanged
ingress.networking.k8s.io/hello-kubernetes-ingress created
ingress.networking.k8s.io/hello-kubernetes-ingress-world created
I can see the lb in the hetzner UI but no curl on that:
Hi there I tried to follow the examples provided from the web:
https://alexslubsky.medium.com/setup-highly-available-kubernetus-cluster-with-hetzner-cloud-and-terraform-941a9e25ddf6
That is generating two services, as load balancer:
and then the app
I can see the lb in the hetzner UI but no curl on that:
and curl:
The text was updated successfully, but these errors were encountered: