Merge pull request #1691 from P4sca1/k8s-service-type-clusterip

fix(k8s): expose worker and apps using ClusterIP service instead of NodePort
This commit is contained in:
Frikky
2025-05-18 23:33:12 +02:00
committed by GitHub
2 changed files with 11 additions and 9 deletions
+7 -4
View File
@@ -497,13 +497,16 @@ func deployk8sApp(image string, identifier string, env []string) error {
name := strings.ReplaceAll(identifier, "_", "-")
labels := map[string]string{
"app.kubernetes.io/name": "shuffle-app",
"app.kubernetes.io/instance": name,
// "app.kubernetes.io/version": "",
// Well-known Kubernetes labels
"app.kubernetes.io/name": "shuffle-app",
"app.kubernetes.io/instance": name,
"app.kubernetes.io/part-of": "shuffle",
"app.kubernetes.io/managed-by": "shuffle-worker",
// Keep legacy labels for backward compatibility
"app": name,
// TODO: Add Shuffle specific labels
// "app.shuffler.io/name": "APP_NAME",
// "app.shuffler.io/version": "APP_VERSION",
}
matchLabels := map[string]string{
@@ -666,7 +669,7 @@ func deployk8sApp(image string, identifier string, env []string) error {
TargetPort: intstr.FromInt(deployport),
},
},
Type: corev1.ServiceTypeNodePort,
Type: corev1.ServiceTypeClusterIP,
},
}