diff --git a/deployment.yml b/deployment.yml index 9583887..3bd9201 100644 --- a/deployment.yml +++ b/deployment.yml @@ -34,6 +34,17 @@ spec: image: registry.izaac.pl:5000/izaac-frontend:latest ports: - containerPort: 80 + volumeMounts: + - name: config-volume + mountPath: /etc/nginx/conf.d + readOnly: true + volumes: + - name: config-volume + configMap: + name: nginx-config + items: + - key: default.conf + path: default.conf --- apiVersion: v1 kind: Service