The IBM Cloud Operator provides a simple Kubernetes CRD-Based API to provision and bind IBM public cloud services on your Kubernetes cluster. With this operator, you no longer need out-of-band processes to consume IBM Cloud Services in your application; you can simply provide service and binding custom resources as part of your Kubernetes application templates and let the operator reconciliation logic ensure that the required resources are automatically created and maintained.
For a detailed guide on how to use the IBM Cloud Operator, see IBM Cloud Operator User Guide.
-
Service Provisioning - supports provisioning for any service and plan available in the IBM Cloud catalog.
-
Bindings Management - automatically creates secrets with the credentials to bind to any provisioned service.
The operator can be installed on any Kubernetes cluster with version >= 1.11.
You need an IBM Cloud account and the
IBM Cloud CLI.
You need also to have the kubectl CLI
already configured to access your cluster. Before installing the operator, you need to login to
your IBM cloud account with the IBM Cloud CLI:
ibmcloud login
and set a default target environment for your resources with the command:
ibmcloud target --cf -g default
This will use the IBM Cloud ResourceGroup default
. To specify a different ResourceGroup, use the following command:
ibmcloud target -g <resource-group>
Notice that the org
and space
must be included, even if no Cloud Foundry services will be instantiated.
To install the latest release of the operator, run the following script:
curl -sL https://raw.githubusercontent.com/IBM/cloud-operators/master/hack/install-operator.sh | bash
The script above first creates an IBM Cloud API Key and stores it in a Kubernetes secret that can be
accessed by the operator, then it sets defaults such as the default resource group and region
used to provision IBM Cloud Services; finally, it deploys the operator in your cluster. You can always override the defaults in the Service
custom resource. If you prefer to create the secret and the defaults manually, consult the IBM Cloud Operator documentation.
To instantiate services and bindings on behalf of a ServiceId, set the environment variable IC_APIKEY
to the api-key
of the ServiceId. This can be obtained via the IBM Cloud Console or CLI. Be sure to give proper access permissions to the ServiceId.
Next log into the IBM Cloud account that owns the ServiceId and follow the instructions above.
To remove the operator, run the following script:
curl -sL https://raw.githubusercontent.com/IBM/cloud-operators/master/hack/uninstall-operator.sh | bash
You can create an instance of an IBM public cloud service using the following custom resource:
apiVersion: ibmcloud.ibm.com/v1alpha1
kind: Service
metadata:
name: myservice
spec:
plan: <PLAN>
serviceClass: <SERVICE_CLASS>
to find the value for <SERVICE_CLASS>
, you can list the names of all IBM public cloud
services with the command:
ibmcloud catalog service-marketplace
once you find the <SERVICE_CLASS>
name, you can list the available plans to select
a <PLAN>
with the command:
ibmcloud catalog service <SERVICE_CLASS> | grep plan
After creating a service, you can find its status with:
kubectl get services.ibmcloud
NAME STATUS AGE
myservice Online 12s
You can bind to a service with name myservice
using the following custom resource:
apiVersion: ibmcloud.ibm.com/v1alpha1
kind: Binding
metadata:
name: mybinding
spec:
serviceName: myservice
To find the status of your binding, you can run the command:
kubectl get bindings.ibmcloud
NAME STATUS AGE
mybinding Online 25s
A Binding
generates a secret with the same name as the binding resource and
contains service credentials that can be consumed by your application.
kubectl get secrets
NAME TYPE DATA AGE
mybinding Opaque 6 102s
You can find additional samples, and more information on using the operator in the operator documentation.
The Service
yaml includes the following elements:
Field | Is required | Format/Type | Comments |
---|---|---|---|
serviceClass | Yes | String | The type of service being instantiated |
plan | Yes | String | The plan to use for service instantiation, set to Alias for linking to an existing service instance |
serviceClassType | Yes/No | String | Set to CF for Cloud Foundry services, omit otherwise |
externalName | No | [string]string | The name that appears for the instantiated service on the IBM Public Cloud Dashboard |
parameters | No | []Any | Parameters passed for service instantiation, the type could be anything (int, string, object, ...) |
tags | No | []String | Tags passed for service instantiation. These tags appear on the instance on the IBM Public Cloud Dashboard |
context | No | Context Type | Used to override default account context (see below) |
Each paramater
is treated as a RawExtension
by the Operator and parsed into JSON.
The plan
is set to Alias
to link to an existing service instance (see IBM Cloud Operator User Guide
for more details).
Notice that the serviceClass
, plan
, serviceClassType
, and externalName
fields are immutable. Immutability is not enforced
with an admission controller, so updates go through initially successfully. However, the controller intercepts such changes and
changes those fields back to their original values. So although it may seem that updates to those fields are accepted, they are
in fact reverted by the controller. In the future, we plan to implement updatability for parameters
.
The IBM Cloud Operator needs an account context, which indicates the api-key
and the details of the IBM Public Cloud
account to be used for service instantiation. The api-key
is contained in a Secret called seed-secrets
that is created
when the IBM Cloud Operator is installed. Details of the account (such as organization, space, resource group) are held in a
ConfigMap called seed-defaults
. To find the secret and configmap the IBM Cloud Operator first looks at the namespace of the
resource being created, and if not found, in the default namespace. This account information can be overriden by using
the context
field in the service yaml, with the following substructure:
Field | Is required | Format/Type |
---|---|---|
org | No | String |
space | No | String |
region | No | String |
resourceGroup | No | String |
resourceGroupID | No | String |
resourceLocation | No | String |
To override any element, the user can simply indicate that element and omit the others.
If a resourceGroup is indicated, then the resourceGroupID must also be provided. This can be obtained with the
following command, and retrieving the field ID
.
ibmcloud resource group <resourceGroup>
Field | Is required | Format/Type | Comments |
---|---|---|---|
serviceName | Yes | String | The name of the Service resource corresponding to the service instance on which to create credentials |
serviceNamespace | No | String | The namespace of the Service resource |
alias | No | String | The name of credentials, if this Binding is linking to existing credentials |
secretName | No | String | The name of the Secret to be created |
role | No | String | The role to be passed for credentials creation |
parameters | No | []Any | Parameters passed for credentials creation, the type could be anything (int, string, object, ...) |
The alias
field is used to link to an existing credentials (see IBM Cloud Operator User Guide
for more details). If the secretName
is omitted, then the same name as the Binding
itself is used. If the role
is
omitted, then the Operator sets role to Manager
, if that is supported by the service (and if not, it picks the first role
listed by the service). Most services support the Manager
role.
The troubleshooting section provides info on how to debug your operator.