-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding minio with dex auth to nerc-ocp-test cluster
Adding support for object stores in the test cluster with authentication and policy based authorization by OpenShift groups.
- Loading branch information
Showing
14 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- namespace.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: minio | ||
spec: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
commonLabels: | ||
nerc.mghpcc.org/bundle: minio | ||
resources: | ||
- ../../base/core/namespaces/minio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: route.openshift.io/v1 | ||
kind: Route | ||
metadata: | ||
name: minio-console | ||
spec: | ||
port: | ||
targetPort: console | ||
to: | ||
kind: "Service" | ||
name: minio | ||
tls: | ||
termination: edge | ||
insecureEdgeTerminationPolicy: Redirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: minio | ||
spec: | ||
strategy: | ||
type: Recreate | ||
replicas: 1 | ||
template: | ||
spec: | ||
containers: | ||
- name: minio | ||
envFrom: | ||
- secretRef: | ||
name: minio-admin-credentials | ||
- configMapRef: | ||
name: minio-config | ||
optional: true | ||
image: docker.io/minio/minio:RELEASE.2024-11-07T00-52-20Z | ||
ports: | ||
- containerPort: 9000 | ||
name: object-storage | ||
- containerPort: 8080 | ||
name: console | ||
args: | ||
- server | ||
- --console-address | ||
- ":8080" | ||
- /data | ||
volumeMounts: | ||
- name: minio-data | ||
mountPath: /data | ||
livenessProbe: | ||
initialDelaySeconds: 60 | ||
periodSeconds: 10 | ||
timeoutSeconds: 5 | ||
successThreshold: 1 | ||
failureThreshold: 1 | ||
httpGet: | ||
scheme: HTTP | ||
path: /minio/health/live | ||
port: 9000 | ||
volumes: | ||
- name: minio-data | ||
persistentVolumeClaim: | ||
claimName: minio-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: external-secrets.io/v1beta1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: minio-admin-credentials | ||
namespace: minio | ||
spec: | ||
refreshInterval: "1h" | ||
secretStoreRef: | ||
name: nerc-cluster-secrets | ||
kind: ClusterSecretStore | ||
target: | ||
name: minio-admin-credentials | ||
dataFrom: | ||
- extract: | ||
key: $ENV/$CLUSTER/minio/minio-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
namespace: minio | ||
commonLabels: | ||
app: minio | ||
|
||
resources: | ||
- externalsecret-minio-admin-credentials.yaml | ||
- deployment.yaml | ||
- pvc.yaml | ||
- service.yaml | ||
- console-route.yaml | ||
- object-storage-route.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: route.openshift.io/v1 | ||
kind: Route | ||
metadata: | ||
name: minio | ||
spec: | ||
port: | ||
targetPort: object-storage | ||
to: | ||
kind: "Service" | ||
name: minio | ||
tls: | ||
termination: edge | ||
insecureEdgeTerminationPolicy: Redirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: minio-data | ||
spec: | ||
storageClassName: ocs-external-storagecluster-ceph-rbd | ||
volumeMode: Filesystem | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: minio | ||
spec: | ||
ports: | ||
- name: object-storage | ||
port: 9000 | ||
targetPort: object-storage | ||
- name: console | ||
port: 8080 | ||
targetPort: console |
9 changes: 9 additions & 0 deletions
9
minio/overlays/nerc-ocp-test/externalsecrets/patch-minio-admin-credentials.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: external-secrets.io/v1beta1 | ||
kind: ExternalSecret | ||
metadata: | ||
name: minio-admin-credentials | ||
namespace: minio | ||
spec: | ||
dataFrom: | ||
- extract: | ||
key: nerc/nerc-ocp-test/minio/minio-admin-credentials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Documentation: https://min.io/docs/minio/linux/reference/minio-server/settings/iam/openid.html | ||
|
||
MINIO_IDENTITY_OPENID_CONFIG_URL=https://dex-dex.apps.ocp-test.nerc.mghpcc.org/.well-known/openid-configuration | ||
MINIO_IDENTITY_OPENID_CLIENT_ID=minio | ||
MINIO_IDENTITY_OPENID_REDIRECT_URI_DYNAMIC=on | ||
|
||
# This tells minio to look up policy names in the "groups" claim (so e.g. if | ||
# someone in the "nerc-ops" group logs in, minio will look for a "nerc-ops" | ||
# policy to apply). A person cannot log in if there is no policy matches any of | ||
# the claim values. | ||
MINIO_IDENTITY_OPENID_CLAIM_NAME=groups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ../../base | ||
|
||
configMapGenerator: | ||
- name: minio-config | ||
namespace: minio | ||
envs: | ||
- files/minio-config.env | ||
|
||
patches: | ||
- path: externalsecrets/patch-minio-admin-credentials.yaml |