0 votes
in Kubernetes K8s by
What is the command to create a Kubernetes Operator?

a) kubectl create -f operator.yaml

b) kubectl apply -f operator.yaml

c) operator-sdk new [name]

d) kubectl create operator [name]

1 Answer

0 votes
by

Answer: c)

Explanation: operator-sdk new [name]. This command creates a new Kubernetes Operator with the specified name using the Operator SDK, which is a framework for building Kubernetes Operators.

...