curl -LO https://github.com/operator-framework/operator-sdk/releases/download/v1.4.2/operator-sdk_darwin_amd64
chmod +x operator-sdk_darwin_amd64
sudo cp operator-sdk_darwin_amd64 /usr/local/go/bin/operator-sdk
or
brew install operator-sdk
mkdir podset-operator
cd podset-operator
operator-sdk init --domain github.com --repo github.com/caoyingjunz/podset-operator
# Create a PodSet API with Group: cache, Version: v1beta1 and Kind: PodSet
operator-sdk create api --group cache --version v1alpha1 --kind PodSet --resource --controller
make install
TODO
docker build -f Dockerfile . -t jacky06/podset-operator:v0.0.1
docker push jacky06/podset-operator:v0.0.1
crd 来自 podset-operator
kubectl apply -f deploy/crds/kubez_podsets_crd.yaml