Install Operator-SDK on Linux-[STEP-2]
Install OPERATOR-SDK
Operator SDK source code to compile and install the SDK CLI.
Clone the
operator-sdkrepository:mkdir -p $GOPATH/src/github.com/operator-framework cd $GOPATH/src/github.com/operator-framework git clone https://github.com/operator-framework/operator-sdk cd operator-sdkCheck out to branch:
git checkout tags/v0.19.4 -b v0.19.4
Install "make" binary by using yum/dnf dnf install makeInstall the SDK CLI tool:
make tidy make installAbove command installs the CLI binary
operator-sdkat $GOPATH/bin.Verify CLI tool was installed correctly:
operator-sdk -h operator-sdk version
NOTE: Please follow the link below before getting in to above steps.
Comments
Post a Comment