Browse Source

changed default minio pass, added FQDN

feat/added_texservice
Domagoj Zecevic 4 years ago
parent
commit
9b40e49bf4
  1. 7
      infra/minIO/console.yaml
  2. 11
      infra/minIO/server.yaml

7
infra/minIO/console.yaml

@ -67,6 +67,13 @@ metadata:
spec: spec:
rules: rules:
- host: minio.k8s.semprod.local - host: minio.k8s.semprod.local
http:
paths:
- path: /
backend:
serviceName: minio-console
servicePort: 9090
- host: buckets.semapp.de
http: http:
paths: paths:
- path: / - path: /

11
infra/minIO/server.yaml

@ -37,8 +37,13 @@ spec:
- mountPath: /data - mountPath: /data
name: minio-pv name: minio-pv
env: env:
- name: MINIO_BROWSER_REDIRECT_URL - name: MINIO_BROWSER_REDIRECT_URL
value: "http://minio.k8s.semprod.local/" value: "http://minio.k8s.semprod.local/"
# Minio access key and secret key
- name: MINIO_ACCESS_KEY
value: "miniosuperueberadmin"
- name: MINIO_SECRET_KEY
value: "tJ3,sU1$hC7}tE3^xM6(eB9%aG1@cO2^"
volumes: volumes:
- name: minio-pv - name: minio-pv
persistentVolumeClaim: persistentVolumeClaim:
@ -58,7 +63,7 @@ spec:
- ReadWriteOnce - ReadWriteOnce
resources: resources:
requests: requests:
storage: 2Gi storage: 50Gi
--- ---
# Minio Service # Minio Service
apiVersion: v1 apiVersion: v1

Loading…
Cancel
Save