try nodeport

This commit is contained in:
Waylon Walker 2024-03-12 20:27:37 -05:00
parent 8b070fe684
commit 74205f5eb7
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -97,35 +97,70 @@ spec:
# ports: # ports:
# - containerPort: 5000 # - containerPort: 5000
# ---
#
# apiVersion: networking.k8s.io/v1
# kind: Ingress
# metadata:
# labels:
# service: hello-world
# name: hello-world-ingress
# namespace: hello-world
# spec:
# rules:
# - http:
# paths:
# - backend:
# service:
# name: hello-world-active
# port:
# number: 5000
# path: /active
# pathType: Prefix
#
# - http:
# paths:
# - backend:
# service:
# name: hello-world-preview
# port:
# number: 5000
# path: /preview
# pathType: Prefix
# status:
# loadBalancer: {}
#
#
#
--- ---
apiVersion: networking.k8s.io/v1 apiVersion: v1
kind: Ingress kind: Service
metadata: metadata:
labels: name: hello-world-active
service: hello-world
name: hello-world-ingress
namespace: hello-world namespace: hello-world
spec: spec:
rules: type: NodePort # Change service type to NodePort
- http: ports:
paths: - name: "5000"
- backend: port: 5000
service: targetPort: 5000
name: hello-world-active nodePort: 30001 # Specify a node port (you can choose any available port)
port: selector:
number: 5000 app: hello-world
path: /active
pathType: Prefix
- http: ---
paths: apiVersion: v1
- backend: kind: Service
service: metadata:
name: hello-world-preview name: hello-world-preview
port: namespace: hello-world
number: 5000 spec:
path: /preview type: NodePort # Change service type to NodePort
pathType: Prefix ports:
status: - name: "5000"
loadBalancer: {} port: 5000
targetPort: 5000
nodePort: 30002 # Specify a different node port (make sure it's available)
selector:
app: hello-world