Usage:
operator-sdk [command]--verbose- enable debug logging
image- is the container image to be built, e.g. "quay.io/example/operator:v0.0.1".
--enable-tests- enable in-cluster testing by adding test binary to the image--namespaced-manifeststring - path of namespaced resources manifest for tests (default "deploy/operator.yaml")--test-locationstring - location of tests (default "./test/e2e")--image-build-argsstring - extra, optional image build arguments as one string such as"--build-arg https_proxy=$https_proxy"(default "")--image-builderstring - tool to build OCI images. One of:[docker, buildah](default "docker")-h, --help- help for build
The operator-sdk build command compiles the code and builds the executables. After build completes, the image is built locally in docker. Then it needs to be pushed to a remote registry.
If --enable-tests is set, the build command will also build the testing binary, add it to the docker image, and generate
a deploy/test-pod.yaml file that allows a user to run the tests as a pod on a cluster.
$ operator-sdk build quay.io/example/operator:v0.0.1
building example-operator...
building container quay.io/example/operator:v0.0.1...
Sending build context to Docker daemon 163.9MB
Step 1/4 : FROM registry.access.redhat.com/ubi7/ubi-minimal:latest
---> 77144d8c6bdc
Step 2/4 : ADD tmp/_output/bin/example-operator /usr/local/bin/example-operator
---> 2ada0d6ca93c
Step 3/4 : RUN adduser -D example-operator
---> Running in 34b4bb507c14
Removing intermediate container 34b4bb507c14
---> c671ec1cff03
Step 4/4 : USER example-operator
---> Running in bd336926317c
Removing intermediate container bd336926317c
---> d6b58a0fcb8c
Successfully built d6b58a0fcb8c
Successfully tagged quay.io/example/operator:v0.0.1-h, --help- help for bash
-h, --help- help for zsh
-h, --help- help for completion
Generators for shell completions
Example:
$ operator-sdk completion bash
# bash completion for operator-sdk -*- shell-script -*-
...
# ex: ts=4 sw=4 et filetype=shPrints the most recent Golang packages and versions required by operators. Prints in columnar format by default.
--as-file- Print packages and versions in go.mod or Gopkg.toml format, depending on the dependency manager chosen when initializing or migrating a project.
With dependency manager dep:
$ operator-sdk print-deps --as-file
required = [
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/conversion-gen",
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/informer-gen",
"k8s.io/code-generator/cmd/openapi-gen",
"k8s.io/gengo/args",
]
[[override]]
name = "k8s.io/code-generator"
revision = "6702109cc68eb6fe6350b83e14407c8d7309fd1a"
...With dependency manager modules, i.e. go mod:
$ operator-sdk print-deps --as-file
module github.com/example-inc/memcached-operator
require (
contrib.go.opencensus.io/exporter/ocagent v0.4.9 // indirect
github.com/Azure/go-autorest v11.5.2+incompatible // indirect
github.com/appscode/jsonpatch v0.0.0-20190108182946-7c0e3b262f30 // indirect
github.com/coreos/prometheus-operator v0.26.0 // indirectRuns the Kubernetes code-generators for all Custom Resource Definitions (CRD) apis under pkg/apis/....
Currently only runs deepcopy-gen to generate the required DeepCopy() functions for all custom resource types.
Note: This command must be run every time the api (spec and status) for a custom resource type is updated.
--header-filestring - Path to file containing headers for generated files (optional).
$ tree pkg/apis/app/v1alpha1/
pkg/apis/app/v1alpha1/
├── appservice_types.go
├── doc.go
├── register.go
$ operator-sdk generate k8s
INFO[0000] Running deepcopy code-generation for Custom Resource group versions: [app:[v1alpha1], ]
INFO[0001] Code-generation complete.
$ tree pkg/apis/app/v1alpha1/
pkg/apis/app/v1alpha1/
├── appservice_types.go
├── doc.go
├── register.go
└── zz_generated.deepcopy.goRuns the kube-openapi OpenAPIv3 code generator for all Custom Resource Definition (CRD) API tagged fields under pkg/apis/....
Note: This command must be run every time a tagged API struct or struct field for a custom resource type is updated.
$ tree pkg/apis/app/v1alpha1/
pkg/apis/app/v1alpha1/
├── appservice_types.go
├── doc.go
├── register.go
$ operator-sdk generate openapi
INFO[0000] Running OpenAPI code-generation for Custom Resource group versions: [app:[v1alpha1], ]
INFO[0001] Created deploy/crds/app_v1alpha1_appservice_crd.yaml
INFO[0001] Code-generation complete.
$ tree pkg/apis/app/v1alpha1/
pkg/apis/app/v1alpha1/
├── appservice_types.go
├── doc.go
├── register.go
└── zz_generated.openapi.goParent command for all OLM Catalog related commands.
Writes a Cluster Service Version (CSV) manifest and optionally CRD files to deploy/olm-catalog/{operator-name}/{csv-version}.
--csv-versionstring - (required) Semantic version of the CSV manifest.--from-versionstring - Semantic version of CSV manifest to use as a base for a new version.--csv-configstring - Path to CSV config file. Defaults to deploy/olm-catalog/csv-config.yaml.--update-crdsUpdate CRD manifests in deploy/{operator-name}/{csv-version} using the latest CRD manifests.
$ operator-sdk olm-catalog gen-csv --csv-version 0.1.0 --update-crds
INFO[0000] Generating CSV manifest version 0.1.0
INFO[0000] Fill in the following required fields in file deploy/olm-catalog/operator-name/0.1.0/operator-name.v0.1.0.clusterserviceversion.yaml:
spec.keywords
spec.maintainers
spec.provider
spec.labels
INFO[0000] Created deploy/olm-catalog/operator-name/0.1.0/operator-name.v0.1.0.clusterserviceversion.yamlAdds a main.go source file and any associated source files for an operator that is not of the "go" type.
Note: This command will look for playbook.yml in the project root, if you use the .yaml extension you will need to rename it before running migrate or manually add it to your Dockerfile.
--dep-managerstring - Dependency manager the migrated project will use (choices: "dep", "modules") (default "modules")
$ operator-sdk migrate
INFO[0000] No playbook was found, so not including it in the new Dockerfile
INFO[0000] Renamed Dockerfile to build/Dockerfile.sdkold and replaced with newer version. Compare the new Dockerfile to your old one and manually migrate any customizations
INFO[0000] Created go.mod
INFO[0000] Created cmd/manager/main.go
INFO[0000] Created build/Dockerfile
INFO[0000] Created bin/entrypoint
INFO[0000] Created bin/user_setup
INFO[0000] Created library/k8s_status.py
INFO[0000] Created bin/ao-logsScaffolds a new operator project.
project-name- name of the new project
--skip-git-init- Do not init the directory as a git repository--typestring - Type of operator to initialize: "ansible", "helm", or "go" (default "go"). Also requires the following flags if--type=ansibleor--type=helm--api-versionstring - CRD APIVersion in the format$GROUP_NAME/$VERSION(e.g app.example.com/v1alpha1)--kindstring - CRD Kind. (e.g AppService)--generate-playbook- Generate a playbook skeleton. (Only used for--type ansible)--cluster-scoped- Initialize the operator to be cluster-scoped instead of namespace-scoped--helm-chartstring - Initialize helm operator with existing helm chart (<URL>,<repo>/<name>, or local path)--helm-chart-repostring - Chart repository URL for the requested helm chart--helm-chart-versionstring - Specific version of the helm chart (default is latest version)--dep-managerstring - Dependency manager the new project will use (choices: "dep", "modules") (default "modules")-h, --help- help for new
$ mkdir $GOPATH/src/github.com/example.com/
$ cd $GOPATH/src/github.com/example.com/
$ operator-sdk new app-operator$ operator-sdk new app-operator --type=ansible --api-version=app.example.com/v1alpha1 --kind=AppServiceFor more details about creating new Helm operator projects, see the Helm user guide.
$ operator-sdk new app-operator --type=helm \
--api-version=app.example.com/v1alpha1 \
--kind=AppService
$ operator-sdk new app-operator --type=helm \
--api-version=app.example.com/v1alpha1 \
--kind=AppService \
--helm-chart=myrepo/app
$ operator-sdk new app-operator --type=helm \
--helm-chart=myrepo/app
$ operator-sdk new app-operator --type=helm \
--helm-chart=myrepo/app \
--helm-chart-version=1.2.3
$ operator-sdk new app-operator --type=helm \
--helm-chart=app \
--helm-chart-repo=https://charts.mycompany.com/
$ operator-sdk new app-operator --type=helm \
--helm-chart=app \
--helm-chart-repo=https://charts.mycompany.com/ \
--helm-chart-version=1.2.3
$ operator-sdk new app-operator --type=helm \
--helm-chart=/path/to/local/chart-directories/app/
$ operator-sdk new app-operator --type=helm \
--helm-chart=/path/to/local/chart-archives/app-1.2.3.tgzAdds the API definition for a new custom resource under pkg/apis and generates the CRD and CR files under depoy/crds/..., and generates Kubernetes deepcopy functions and OpenAPIv3 validation specs for the new API.
--api-versionstring - CRD APIVersion in the format$GROUP_NAME/$VERSION(e.g app.example.com/v1alpha1)--kindstring - CRD Kind. (e.g AppService)--header-filestring - Path to file containing headers for generated files (optional).
$ operator-sdk add api --api-version app.example.com/v1alpha1 --kind AppService
INFO[0000] Generating api version app.example.com/v1alpha1 for kind AppService.
INFO[0000] Created pkg/apis/app/v1alpha1/appservice_types.go
INFO[0000] Created pkg/apis/addtoscheme_app_v1alpha1.go
INFO[0000] Created pkg/apis/app/v1alpha1/register.go
INFO[0000] Created pkg/apis/app/v1alpha1/doc.go
INFO[0000] Created deploy/crds/app_v1alpha1_appservice_cr.yaml
INFO[0000] Created deploy/crds/app_v1alpha1_appservice_crd.yaml
INFO[0001] Running deepcopy code-generation for Custom Resource group versions: [app:[v1alpha1], ]
INFO[0002] Code-generation complete.
INFO[0002] Running OpenAPI code-generation for Custom Resource group versions: [app:[v1alpha1], ]
INFO[0004] Created deploy/crds/app_v1alpha1_appservice_crd.yaml
INFO[0004] Code-generation complete.
INFO[0004] API generation complete.Adds a new controller under pkg/controller/<kind>/... that, by default, reconciles a custom resource for the specified apiversion and kind.
--api-versionstring - CRD APIVersion in the format$GROUP_NAME/$VERSION(e.g app.example.com/v1alpha1)--kindstring - CRD Kind. (e.g AppService)
$ operator-sdk add controller --api-version app.example.com/v1alpha1 --kind AppService
Created pkg/controller/appservice/appservice_controller.go
Created pkg/controller/add_appservice.goGenerates the CRD and the CR files for the specified api-version and kind.
--api-versionstring - CRD APIVersion in the format$GROUP_NAME/$VERSION(e.g app.example.com/v1alpha1)--kindstring - CRD Kind. (e.g AppService)
$ operator-sdk add crd --api-version app.example.com/v1alpha1 --kind AppService
Generating custom resource definition (CRD) files
Created deploy/crds/app_v1alpha1_appservice_crd.yaml
Created deploy/crds/app_v1alpha1_appservice_cr.yamlRuns as an ansible operator process. This is intended to be used when running
in a Pod inside a cluster. Developers wanting to run their operator locally
should use up local instead.
--reconcile-periodstring - Default reconcile period for controllers (default 1m0s)--watches-filestring - Path to the watches file to use (default "./watches.yaml")
$ operator-sdk run ansible --watches-file=/opt/ansible/watches.yaml --reconcile-period=30sRuns as a helm operator process. This is intended to be used when running
in a Pod inside a cluster. Developers wanting to run their operator locally
should use up local instead.
--reconcile-periodstring - Default reconcile period for controllers (default 1m0s)--watches-filestring - Path to the watches file to use (default "./watches.yaml")
$ operator-sdk run helm --watches-file=/opt/helm/watches.yaml --reconcile-period=30sRun scorecard tests on an operator
basic-tests- Enable basic operator checks (default true)cr-manifeststring - (required) Path to manifest for Custom Resourcecsv-pathstring - (required ifolm-testsis set) Path to CSV being testedglobal-manifeststring - Path to manifest for Global resources (e.g. CRD manifests)init-timeoutint - Timeout for status block on CR to be created, in seconds (default 10)kubeconfigstring - Path to kubeconfig of custom resource created in clusternamespacestring - Namespace of custom resource created in clusternamespaced-manifeststring - Path to manifest for namespaced resources (e.g. RBAC and Operator manifest)olm-deployed- Only use the CSV atcsv-pathfor manifest data, except for those provided tocr-manifestolm-tests- Enable OLM integration checks (default true)proxy-imagestring - Image name for scorecard proxy (default "quay.io/operator-framework/scorecard-proxy")proxy-pull-policystring - Pull policy for scorecard proxy image (default "Always")verbose- Enable verbose logging-h, --help- help for scorecard
$ operator-sdk scorecard --cr-manifest deploy/crds/cache_v1alpha1_memcached_cr.yaml --csv-path deploy/olm-catalog/memcached-operator/0.0.2/memcached-operator.v0.0.2.clusterserviceversion.yaml
Checking for existence of spec and status blocks in CR
Checking that operator actions are reflected in status
Checking that writing into CRs has an effect
Checking for CRD resources
Checking for existence CR example
Checking spec descriptors
Checking status descriptors
Basic Operator:
Spec Block Exists: 1/1 points
Status Block Exist: 1/1 points
Operator actions are reflected in status: 1/1 points
Writing into CRs has an effect: 1/1 points
OLM Integration:
Owned CRDs have resources listed: 1/1 points
CRs have at least 1 example: 0/1 points
Spec fields with descriptors: 1/1 points
Status fields with descriptors: 0/1 points
Total Score: 6/8 points
SUGGESTION: Add an alm-examples annotation to your CSV to pass the CRs have at least 1 example test
SUGGESTION: Add a status descriptor for nodesRuns the tests locally
test-location- location of e2e test files (e.g. "./test/e2e/")
--debug- Enable debug-level logging--kubeconfigstring - location of kubeconfig for Kubernetes cluster (default "~/.kube/config")--global-manifeststring - path to manifest for global resources (default "deploy/crd.yaml)--namespaced-manifeststring - path to manifest for per-test, namespaced resources (default: combines deploy/service_account.yaml, deploy/rbac.yaml, and deploy/operator.yaml)--namespacestring - if non-empty, single namespace to run tests in (e.g. "operator-test") (default: "")--go-test-flagsstring - Additional flags to pass to go test--molecule-test-flagsstring - Additional flags to pass to molecule test--up-local- enable running operator locally with go run instead of as an image in the cluster--no-setup- disable test resource creation--imagestring - use a different operator image from the one specified in the namespaced manifest-h, --help- help for local
The operator-sdk test command runs go tests built using the Operator SDK's test framework.
$ operator-sdk test local ./test/e2e/
ok github.com/operator-framework/operator-sdk-samples/memcached-operator/test/e2e 20.410sRuns the e2e tests packaged in an operator image as a pod in the cluster
image-name- the operator image that is used to run the tests in a pod (e.g. "quay.io/example/memcached-operator:v0.0.1")
--kubeconfigstring - location of kubeconfig for Kubernetes cluster (default "~/.kube/config")--image-pull-policystring - set test pod image pull policy. Allowed values: Always, Never (default "Always")--namespacestring - namespace to run tests in (default "default")--pending-timeoutint - timeout in seconds for testing pod to stay in pending state (default 60s)--service-accountstring - service account to run tests on (default "default")-h, --help- help for cluster
The operator-sdk test command runs go tests embedded in an operator image built using the Operator SDK.
$ operator-sdk test cluster quay.io/example/memcached-operator:v0.0.1
Test Successfully CompletedThe operator-sdk up local command launches the operator on the local machine
with the ability to access a Kubernetes cluster using a kubeconfig file, and
setting any necessary environment variables that the operator would expect to
find when running in a cluster. For Go-based operators, this command will
compile and run the operator binary. In the case of non-Go operators, it runs
the operator-sdk binary itself as the operator.
--go-ldflagsstring - Set Go linker options--kubeconfigstring - The file path to Kubernetes configuration file; defaults to $HOME/.kube/config--namespacestring - The namespace where the operator watches for changes. (default "default")--operator-flagsstring - Flags that the local operator may need.-h, --help- help for local
$ operator-sdk up local --kubeconfig "mycluster.kubecfg" --namespace "default" --operator-flags "--flag1 value1 --flag2=value2"The below example will use the default kubeconfig, the default namespace environment var, and pass in flags for the operator.
To use the operator flags, your operator must know how to handle the option. Below imagine an operator that understands the resync-interval flag.
$ operator-sdk up local --operator-flags "--resync-interval 10"If you are planning on using a different namespace than the default, then you should use the --namespace flag to change where the operator is watching for custom resources to be created.
For this to work your operator must handle the WATCH_NAMESPACE environment variable. To do that you can use the utility function k8sutil.GetWatchNamespace in your operator.
$ operator-sdk up local --namespace "testing"-h, --help- help for up