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