Files
Authenticator/script/k8s/service.yaml
cialloo 38ca0cf0e9
Some checks failed
CI - Build and Push / Build and Push Docker Image (push) Failing after 11s
Add CI/CD workflows and Kubernetes configurations for deployment
2025-10-07 10:45:44 +08:00

19 lines
346 B
YAML

# Kubernetes Service Configuration
apiVersion: v1
kind: Service
metadata:
name: ${CONTAINER_IMAGE_NAME}
namespace: ${KUBERNETES_NAMESPACE}
labels:
app: ${CONTAINER_IMAGE_NAME}
spec:
type: ClusterIP
selector:
app: ${CONTAINER_IMAGE_NAME}
ports:
- name: http
port: 8888
targetPort: http
protocol: TCP