13 lines
216 B
YAML
13 lines
216 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ${APP_NAME}-service
|
|
namespace: ${NAMESPACE}
|
|
spec:
|
|
selector:
|
|
app: ${APP_NAME}
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 5173
|
|
type: ClusterIP |