fix(saml): fixing port name longer than 15c

This commit is contained in:
Philippe Caseiro 2023-06-22 16:50:53 +02:00
parent 9d69c9ada0
commit c7e058b86b
2 changed files with 16 additions and 16 deletions

View File

@ -6,9 +6,9 @@ metadata:
name: hydra-saml name: hydra-saml
spec: spec:
ports: ports:
- name: hydra-saml-shibboleth-sp - name: hydra-saml
port: 80 port: 80
selector: selector:
io.kompose.service: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml
status: status:
loadBalancer: {} loadBalancer: {}

View File

@ -2,28 +2,28 @@ apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
labels: labels:
io.kompose.service: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml
name: hydra-saml-shibboleth-sp name: hydra-saml
spec: spec:
replicas: 1 replicas: 1
selector: selector:
matchLabels: matchLabels:
io.kompose.service: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml
strategy: strategy:
type: Recreate type: Recreate
template: template:
metadata: metadata:
labels: labels:
io.kompose.service: hydra-saml-shibboleth-sp io.kompose.service: hydra-saml
spec: spec:
containers: containers:
- name: hydra-saml-shibboleth-sp - name: hydra-saml
image: reg.cadoles.com/cadoles/shibboleth-sp-v3:v0.0.0-172-g0f44679 image: reg.cadoles.com/cadoles/shibboleth-sp-v3:v0.0.0-172-g0f44679
envFrom: envFrom:
- configMapRef: - configMapRef:
name: hydra-saml-env name: hydra-saml-env
ports: ports:
- containerPort: 80 - containerPort: 80
resources: {} resources: {}
restartPolicy: Always restartPolicy: Always