k8s operators

OpenShift

Installing

To install a k8s operator, define the subscription with, for instance opendatahub-operator.yaml:

apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: opendatahub-operator
  namespace: openshift-operators
spec:
  channel: rolling
  installPlanApproval: Automatic
  name: opendatahub-operator
  source: community-operators
  sourceNamespace: openshift-marketplace

and apply it with oc apply -f opendatahub-operator.yaml.