diff --git a/manifests/route.yaml b/manifests/route.yaml new file mode 100644 index 0000000..b6516ae --- /dev/null +++ b/manifests/route.yaml @@ -0,0 +1,17 @@ +apiVersion: route.openshift.io/v1 +kind: Route +metadata: + name: openclaw + namespace: openclaw +spec: + host: clawdbox.apps.lab.apilab.us + to: + kind: Service + name: clawrganizer + weight: 100 + port: + targetPort: http + tls: + termination: edge + insecureEdgeTerminationPolicy: Redirect + wildcardPolicy: None diff --git a/manifests/service.yaml b/manifests/service.yaml index 9446e6a..aa23eaa 100644 --- a/manifests/service.yaml +++ b/manifests/service.yaml @@ -7,8 +7,11 @@ metadata: app: clawdbox spec: ports: - - port: 2222 + - name: ssh + port: 2222 targetPort: 2222 - name: ssh + - name: clawrganizer + port: 443 + targetPort: 3333 selector: app: clawdbox