Skip to content

Instantly share code, notes, and snippets.

@jboyd01
Last active February 25, 2019 15:47
Show Gist options
  • Save jboyd01/9f5cd06e768f3b608c495438a5237dc2 to your computer and use it in GitHub Desktop.
Save jboyd01/9f5cd06e768f3b608c495438a5237dc2 to your computer and use it in GitHub Desktop.

Revisions

  1. Jay Boyd revised this gist Feb 25, 2019. 1 changed file with 1 addition and 5 deletions.
    6 changes: 1 addition & 5 deletions enablement.md
    Original file line number Diff line number Diff line change
    @@ -25,11 +25,7 @@ EOF
    ```


    valid values for logLevel:
    Normal
    Debug
    Trace
    TraceAll
    valid values for logLevel: Normal, Debug, Trace, or TraceAll


    These resources are watched by the Service Catalog operators and once the resources are created and set to a Managed state the Service Catalog API Server will be installed to the kube-service-catalog namespace and the accompanying Controller Manager will be installed to the kube-service-catalog-controller-manager namespace.
  2. Jay Boyd renamed this gist Feb 25, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. Jay Boyd created this gist Feb 25, 2019.
    35 changes: 35 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,35 @@
    As of Feb 24 Service Catalog is now installed by two new Cluster Operators. Initially Service Catalog is not enabled/installed. To enable it, the cluster admin must create two custom resources as follows:

    ```
    cat <<EOF | oc create -f -
    apiVersion: operator.openshift.io/v1
    kind: ServiceCatalogAPIServer
    metadata:
    name: cluster
    spec:
    logLevel: "Normal"
    managementState: Managed
    EOF
    ```

    ```
    cat <<EOF | oc create -f -
    apiVersion: operator.openshift.io/v1
    kind: ServiceCatalogAPIServer
    metadata:
    name: cluster
    spec:
    logLevel: "Normal"
    managementState: Managed
    EOF
    ```


    valid values for logLevel:
    Normal
    Debug
    Trace
    TraceAll


    These resources are watched by the Service Catalog operators and once the resources are created and set to a Managed state the Service Catalog API Server will be installed to the kube-service-catalog namespace and the accompanying Controller Manager will be installed to the kube-service-catalog-controller-manager namespace.