We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ive tried to deploy ingress for kasm, i can get a certificate, but kasm ui doesnt display ? is kasm-manager the right service ?
i show kasm db ClusterIP 10.15.150.16 5432/TCP 3d17h kasm kasm-api ClusterIP 10.15.78.253 8080/TCP 3d17h kasm kasm-guac ClusterIP 10.15.15.237 3000/TCP,3001/TCP,3002/TCP,3003/TCP,3004/TCP 3d17h kasm kasm-manager ClusterIP 10.15.219.160 8181/TCP 3d17h kasm kasm-proxy ClusterIP 10.15.250.67 8080/TCP,8443/TCP 3d17h kasm kasm-redis ClusterIP 10.15.204.194 6379/TCP 3d17h kasm kasm-share ClusterIP 10.15.113.230 8182/TCP 3d17h kasm rdp-gateway ClusterIP 10.15.103.170 5555/TCP,3389/TCP 3d17h kasm rdp-https-gateway ClusterIP 10.15.119.102 9443/TCP 3d17h
➜ K8s cat kasm-ingress.yaml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: kasm-ingress namespace: kasm annotations: cert-manager.io/cluster-issuer: "letsencrypt-prod" kubernetes.io/ingress.class: "nginx" spec: tls:
The text was updated successfully, but these errors were encountered:
@outbackdingo, actually, the kasm-proxy is the service you your ingress needs to connect to.
kasm-proxy
Sorry, something went wrong.
No branches or pull requests
Ive tried to deploy ingress for kasm, i can get a certificate, but kasm ui doesnt display ? is kasm-manager the right service ?
i show
kasm db ClusterIP 10.15.150.16 5432/TCP 3d17h
kasm kasm-api ClusterIP 10.15.78.253 8080/TCP 3d17h
kasm kasm-guac ClusterIP 10.15.15.237 3000/TCP,3001/TCP,3002/TCP,3003/TCP,3004/TCP 3d17h
kasm kasm-manager ClusterIP 10.15.219.160 8181/TCP 3d17h
kasm kasm-proxy ClusterIP 10.15.250.67 8080/TCP,8443/TCP 3d17h
kasm kasm-redis ClusterIP 10.15.204.194 6379/TCP 3d17h
kasm kasm-share ClusterIP 10.15.113.230 8182/TCP 3d17h
kasm rdp-gateway ClusterIP 10.15.103.170 5555/TCP,3389/TCP 3d17h
kasm rdp-https-gateway ClusterIP 10.15.119.102 9443/TCP 3d17h
➜ K8s cat kasm-ingress.yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kasm-ingress
namespace: kasm
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/ingress.class: "nginx"
spec:
tls:
secretName: kasm-tls
rules:
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: kasm-manager
port:
number: 8181
The text was updated successfully, but these errors were encountered: