Update images to tag 20250523-012356

This commit is contained in:
Francesco Albano 2025-05-23 01:23:58 +02:00
parent 3455b75085
commit 47666d9076

24
k8s/argocd/nodeport.yaml Normal file
View File

@ -0,0 +1,24 @@
apiVersion: v1
kind: Service
metadata:
name: argocd-server-nodeport
namespace: argocd
labels:
app.kubernetes.io/component: server
app.kubernetes.io/name: argocd-server
app.kubernetes.io/part-of: argocd
spec:
type: NodePort
ports:
- name: http
port: 80
protocol: TCP
targetPort: 8080
nodePort: 30080 # Questa sarà 30080 sull'IP del nodo
- name: https
port: 443
protocol: TCP
targetPort: 8080
nodePort: 30443 # Questa sarà 30443 sull'IP del nodo
selector:
app.kubernetes.io/name: argocd-server