Skip to content

Commit

Permalink
Openshift 5.0.13 (#2017)
Browse files Browse the repository at this point in the history
* Add required annotations - The annotations are required for Certification from Redhat; 
  more details at miniohq/engineering#1558

* Adding back the `--use-image-digests` because it turns out it's needed to create 
  the `spec.relatedImages` in the CSV

* Release 5.0.13 CSV updates to publish in Openshift Marketplaces

Signed-off-by: pjuarezd <pjuarezd@users.noreply.github.com>
  • Loading branch information
pjuarezd authored Mar 15, 2024
1 parent 798825d commit 66bb05e
Show file tree
Hide file tree
Showing 17 changed files with 589 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ metadata:
"bucketDNS": false,
"domains": {}
},
"image": "quay.io/minio/minio:RELEASE.2024-03-05T04-48-44Z",
"image": "quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320",
"imagePullSecret": {},
"mountPath": "/export",
"podManagementPolicy": "Parallel",
Expand Down Expand Up @@ -84,12 +84,22 @@ metadata:
MinIO is a Kubernetes-native high performance object store with an
S3-compatible API. The MinIO Operator supports deploying MinIO Tenants
onto any Kubernetes.
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "true"
features.operators.openshift.io/fips-compliant: "true"
features.operators.openshift.io/proxy-aware: "true"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
k8sMinVersion: "1.18"
operatorframework.io/suggested-namespace: minio-operator
operators.operatorframework.io/builder: operator-sdk-v1.22.2
operators.operatorframework.io/project_layout: unknown
repository: https://github.com/minio/operator
containerImage: quay.io/minio/operator:v5.0.13
containerImage: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator.v5.0.13
namespace: minio-operator
spec:
Expand Down Expand Up @@ -576,7 +586,7 @@ spec:
- args:
- ui
- --certs-dir=/tmp/certs
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: console
ports:
Expand All @@ -585,7 +595,6 @@ spec:
- containerPort: 9443
name: https
resources: {}
securityContext: {}
volumeMounts:
- mountPath: /tmp/certs
name: tls-certificates
Expand Down Expand Up @@ -656,15 +665,14 @@ spec:
value: "on"
- name: OPERATOR_STS_ENABLED
value: "on"
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: minio-operator
resources:
requests:
cpu: 200m
ephemeral-storage: 500Mi
memory: 256Mi
securityContext: {}
volumeMounts:
- mountPath: /tmp/service-ca
name: openshift-service-ca
Expand Down Expand Up @@ -773,5 +781,12 @@ spec:
provider:
name: MinIO Inc
url: https://min.io
relatedImages:
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator
- image: quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320
name: minio-ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320-annotation
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: console
version: 5.0.13
replaces: minio-operator.v5.0.12
Original file line number Diff line number Diff line change
Expand Up @@ -2051,6 +2051,67 @@ spec:
required:
- name
type: object
containerSecurityContext:
properties:
allowPrivilegeEscalation:
type: boolean
capabilities:
properties:
add:
items:
type: string
type: array
drop:
items:
type: string
type: array
type: object
privileged:
type: boolean
procMount:
type: string
readOnlyRootFilesystem:
type: boolean
runAsGroup:
format: int64
type: integer
runAsNonRoot:
type: boolean
runAsUser:
format: int64
type: integer
seLinuxOptions:
properties:
level:
type: string
role:
type: string
type:
type: string
user:
type: string
type: object
seccompProfile:
properties:
localhostProfile:
type: string
type:
type: string
required:
- type
type: object
windowsOptions:
properties:
gmsaCredentialSpec:
type: string
gmsaCredentialSpecName:
type: string
hostProcess:
type: boolean
runAsUserName:
type: string
type: object
type: object
env:
items:
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ metadata:
"bucketDNS": false,
"domains": {}
},
"image": "quay.io/minio/minio:RELEASE.2024-03-05T04-48-44Z",
"image": "quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320",
"imagePullSecret": {},
"mountPath": "/export",
"podManagementPolicy": "Parallel",
Expand Down Expand Up @@ -84,12 +84,22 @@ metadata:
MinIO is a Kubernetes-native high performance object store with an
S3-compatible API. The MinIO Operator supports deploying MinIO Tenants
onto any Kubernetes.
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "true"
features.operators.openshift.io/fips-compliant: "true"
features.operators.openshift.io/proxy-aware: "true"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
k8sMinVersion: "1.18"
operatorframework.io/suggested-namespace: minio-operator
operators.operatorframework.io/builder: operator-sdk-v1.22.2
operators.operatorframework.io/project_layout: unknown
repository: https://github.com/minio/operator
containerImage: quay.io/minio/operator:v5.0.13
containerImage: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator.v5.0.13
namespace: minio-operator
spec:
Expand Down Expand Up @@ -576,7 +586,7 @@ spec:
- args:
- ui
- --certs-dir=/tmp/certs
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: console
ports:
Expand All @@ -585,7 +595,6 @@ spec:
- containerPort: 9443
name: https
resources: {}
securityContext: {}
volumeMounts:
- mountPath: /tmp/certs
name: tls-certificates
Expand Down Expand Up @@ -656,15 +665,14 @@ spec:
value: "on"
- name: OPERATOR_STS_ENABLED
value: "on"
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: minio-operator
resources:
requests:
cpu: 200m
ephemeral-storage: 500Mi
memory: 256Mi
securityContext: {}
volumeMounts:
- mountPath: /tmp/service-ca
name: openshift-service-ca
Expand Down Expand Up @@ -773,4 +781,11 @@ spec:
provider:
name: MinIO Inc
url: https://min.io
relatedImages:
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator
- image: quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320
name: minio-ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320-annotation
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: console
version: 5.0.13
Original file line number Diff line number Diff line change
Expand Up @@ -2051,6 +2051,67 @@ spec:
required:
- name
type: object
containerSecurityContext:
properties:
allowPrivilegeEscalation:
type: boolean
capabilities:
properties:
add:
items:
type: string
type: array
drop:
items:
type: string
type: array
type: object
privileged:
type: boolean
procMount:
type: string
readOnlyRootFilesystem:
type: boolean
runAsGroup:
format: int64
type: integer
runAsNonRoot:
type: boolean
runAsUser:
format: int64
type: integer
seLinuxOptions:
properties:
level:
type: string
role:
type: string
type:
type: string
user:
type: string
type: object
seccompProfile:
properties:
localhostProfile:
type: string
type:
type: string
required:
- type
type: object
windowsOptions:
properties:
gmsaCredentialSpec:
type: string
gmsaCredentialSpecName:
type: string
hostProcess:
type: boolean
runAsUserName:
type: string
type: object
type: object
env:
items:
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ metadata:
"bucketDNS": false,
"domains": {}
},
"image": "quay.io/minio/minio:RELEASE.2024-03-05T04-48-44Z",
"image": "quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320",
"imagePullSecret": {},
"mountPath": "/export",
"podManagementPolicy": "Parallel",
Expand Down Expand Up @@ -84,14 +84,24 @@ metadata:
MinIO is a Kubernetes-native high performance object store with an
S3-compatible API. The MinIO Operator supports deploying MinIO Tenants
onto any Kubernetes.
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "false"
features.operators.openshift.io/disconnected: "true"
features.operators.openshift.io/fips-compliant: "true"
features.operators.openshift.io/proxy-aware: "true"
features.operators.openshift.io/tls-profiles: "false"
features.operators.openshift.io/token-auth-aws: "false"
features.operators.openshift.io/token-auth-azure: "false"
features.operators.openshift.io/token-auth-gcp: "false"
k8sMinVersion: "1.18"
marketplace.openshift.io/remote-workflow: https://marketplace.redhat.com/en-us/operators/minio-operator-rhmp/pricing?utm_source=openshift_console
marketplace.openshift.io/support-workflow: https://marketplace.redhat.com/en-us/operators/minio-operator-rhmp/support?utm_source=openshift_console
operatorframework.io/suggested-namespace: minio-operator
operators.operatorframework.io/builder: operator-sdk-v1.22.2
operators.operatorframework.io/project_layout: unknown
repository: https://github.com/minio/operator
containerImage: quay.io/minio/operator:v5.0.13
containerImage: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator-rhmp.v5.0.13
namespace: minio-operator
spec:
Expand Down Expand Up @@ -578,7 +588,7 @@ spec:
- args:
- ui
- --certs-dir=/tmp/certs
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: console
ports:
Expand All @@ -587,7 +597,6 @@ spec:
- containerPort: 9443
name: https
resources: {}
securityContext: {}
volumeMounts:
- mountPath: /tmp/certs
name: tls-certificates
Expand Down Expand Up @@ -658,15 +667,14 @@ spec:
value: "on"
- name: OPERATOR_STS_ENABLED
value: "on"
image: quay.io/minio/operator:v5.0.13
image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
imagePullPolicy: IfNotPresent
name: minio-operator
resources:
requests:
cpu: 200m
ephemeral-storage: 500Mi
memory: 256Mi
securityContext: {}
volumeMounts:
- mountPath: /tmp/service-ca
name: openshift-service-ca
Expand Down Expand Up @@ -775,5 +783,12 @@ spec:
provider:
name: MinIO Inc
url: https://min.io
relatedImages:
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: console
- image: quay.io/minio/operator@sha256:0a5688b6ac83800d61c32b3f8a19913278d9322ed8974f4e6b444074ecf3d3ee
name: minio-operator
- image: quay.io/minio/minio@sha256:ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320
name: minio-ab5551aa2f7d8a950f83bf64c2bb53b7eae9e0b7ea906a5288d3bbf37fc3d320-annotation
version: 5.0.13
replaces: minio-operator-rhmp.v5.0.12
Loading

0 comments on commit 66bb05e

Please sign in to comment.