Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add proxies for some external services #756

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

volschin
Copy link
Owner

@volschin volschin commented Sep 4, 2024

No description provided.

@volschin volschin linked an issue Sep 4, 2024 that may be closed by this pull request
Comment on lines +12 to +22
apiVersion: v1
kind: Service
metadata:
name: synology
spec:
ports:
- name: http
port: 5001
protocol: TCP
targetPort: 5001
---

Check failure

Code scanning / checkov

The default namespace should not be used Error

The default namespace should not be used
Comment on lines +55 to +80
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
labels:
app.kubernetes.io/name: &app synology
app.kubernetes.io/instance: *app
name: synology-internal
spec:
ingressClassName: nginx-internal
rules:
- host: &host nas.${EXTERNAL_DOMAIN}
http:
paths:
- backend:
service:
name: *app
port:
number: 5001
path: /
pathType: Prefix
tls:
- hosts:
- *host
secretName: synology-tls-external

Check failure

Code scanning / checkov

The default namespace should not be used Error

The default namespace should not be used
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: add some external services to ns network
1 participant