Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update manifest
Signed-off-by: Daniel Fan <[email protected]>
  • Loading branch information
Daniel-Fan committed Apr 2, 2024
commit 4a144cff080afbe2eeeecdb34d58adea55d4631d
2 changes: 1 addition & 1 deletion api/v1alpha1/operatorconfig_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type OperatorConfigStatus struct {
//+kubebuilder:object:root=true
//+kubebuilder:subresource:status

// OperatorConfig is the Schema for the operatorconfigs API
// OperatorConfig is the Schema for the operatorconfigs API. Documentation For additional details regarding install parameters check https://ibm.biz/icpfs39install. License By installing this product you accept the license terms https://ibm.biz/icpfs39license
type OperatorConfig struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=ibm-odlm
LABEL operators.operatorframework.io.bundle.channels.v1=v4.3
LABEL operators.operatorframework.io.bundle.channel.default.v1=v4.3
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.29.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ metadata:
categories: Developer Tools, Monitoring, Logging & Tracing, Security
certified: "false"
containerImage: icr.io/cpopen/odlm:latest
createdAt: "2024-03-29T03:10:47Z"
createdAt: "2024-04-02T02:16:34Z"
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based API to manage the lifecycle of operands.
nss.operator.ibm.com/managed-operators: ibm-odlm
olm.skipRange: '>=1.2.0 <4.3.0'
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.29.0
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/IBM/operand-deployment-lifecycle-manager
support: IBM
Expand Down Expand Up @@ -215,7 +215,9 @@ spec:
x-descriptors:
- urn:alm:descriptor:io.kubernetes.phase
version: v1alpha1
- kind: OperatorConfig
- description: OperatorConfig is the Schema for the operatorconfigs API
displayName: Operator Config
kind: OperatorConfig
name: operatorconfigs.operator.ibm.com
version: v1alpha1
description: |-
Expand Down Expand Up @@ -567,19 +569,19 @@ spec:
clusterPermissions:
- rules:
- apiGroups:
- operators.coreos.com
- operator.ibm.com
resources:
- catalogsources
- auditloggings
- certmanagers
verbs:
- delete
- get
- apiGroups:
- operator.ibm.com
- operators.coreos.com
resources:
- certmanagers
- auditloggings
- catalogsources
verbs:
- get
- delete
serviceAccountName: operand-deployment-lifecycle-manager
deployments:
- label:
Expand Down Expand Up @@ -674,6 +676,21 @@ spec:
terminationGracePeriodSeconds: 10
permissions:
- rules:
- apiGroups:
- ""
resources:
- configmaps
- namespaces
- secrets
- services
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- '*'
resources:
Expand All @@ -686,24 +703,39 @@ spec:
- patch
- update
- watch
- apiGroups:
- k8s.keycloak.org
resources:
- keycloakrealmimports
- keycloaks
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- operator.ibm.com
resources:
- operandconfigs
- operandconfigs/status
- operandconfigs/finalizers
- operandconfigs/status
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- operator.ibm.com
resources:
- operandregistries
- operandregistries/status
- operandregistries/finalizers
- operandrequests
- operandrequests/status
- operandrequests/finalizers
- operandbindinfos
- operandbindinfos/status
- operandbindinfos/finalizers
- operatorconfigs
- operatorconfigs/status
- operatorconfigs/finalizers
- operandregistries/status
verbs:
- create
- delete
Expand All @@ -713,12 +745,11 @@ spec:
- update
- watch
- apiGroups:
- ""
- operator.ibm.com
resources:
- configmaps
- secrets
- services
- namespaces
- operandrequests
- operandrequests/finalizers
- operandrequests/status
verbs:
- create
- delete
Expand All @@ -728,9 +759,11 @@ spec:
- update
- watch
- apiGroups:
- route.openshift.io
- operator.ibm.com
resources:
- routes
- operatorconfigs
- operatorconfigs/finalizers
- operatorconfigs/status
verbs:
- create
- delete
Expand All @@ -742,8 +775,8 @@ spec:
- apiGroups:
- operators.coreos.com
resources:
- operatorgroups
- installplans
- clusterserviceversions
- subscriptions
verbs:
- create
- delete
Expand All @@ -753,9 +786,10 @@ spec:
- update
- watch
- apiGroups:
- k8s.keycloak.org
- operators.coreos.com
resources:
- keycloaks
- installplans
- operatorgroups
verbs:
- create
- delete
Expand All @@ -774,6 +808,18 @@ spec:
- patch
- update
- watch
- apiGroups:
- route.openshift.io
resources:
- routes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
serviceAccountName: operand-deployment-lifecycle-manager
strategy: deployment
installModes:
Expand Down
Loading