Install Operator-SDK on Linux-[STEP-2]
Install OPERATOR-SDK Operator SDK source code to compile and install the SDK CLI. Clone the operator-sdk repository: 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-sdk Check out to branch: git checkout tags/v0.19.4 -b v0.19.4 Install "make" binary by using yum/dnf dnf install make Install the SDK CLI tool: make tidy make install Above command installs the CLI binary operator- sdk at $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. https://openshift-operator-intro.blogspot.com/2020/08/install-go.html