Replies: 1 comment 1 reply
-
I think you can use 2 ingress. One is for codea, one is for codeb. kind: Ingress
spec:
tls:
- hosts:
- "codea.k8s.local.com"
---
kind: Ingress
spec:
tls:
- hosts:
- "codeb.k8s.local.com" Access codea through |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
for example, I want to start two code server pods on k8s, I will use the ingress to set their url and request them.
The code server pod-A, I want to use http://k8s.local.com:port/vscode/codea to access it
The code server pod-B, I want to use http://k8s.local.com:port/vscode/codeb to access it
How can I change the env or use the parmeter to implement this function?
Beta Was this translation helpful? Give feedback.
All reactions