fix: update cnl-bridge container and service ports from 9666 to 9667
Some checks failed
validate / lint (push) Failing after 1s

This commit is contained in:
Nik Afiq 2026-07-26 01:01:01 +09:00
parent f3cef5cd1d
commit a70a3a8014

View File

@ -111,7 +111,7 @@ spec:
- name: cnl-bridge
image: python:3.12-alpine
ports:
- containerPort: 9666
- containerPort: 9667
resources:
requests:
cpu: 5m
@ -148,7 +148,7 @@ spec:
self.wfile.write(b'Ok.')
def log_message(self, *a): pass
http.server.HTTPServer(('0.0.0.0', 9666), Handler).serve_forever()
http.server.HTTPServer(('0.0.0.0', 9667), Handler).serve_forever()
volumes:
- name: tun
hostPath:
@ -177,7 +177,7 @@ spec:
targetPort: 5800
- name: cnl-bridge
port: 9666
targetPort: 9666
targetPort: 9667
---
apiVersion: networking.k8s.io/v1
kind: Ingress