gnufied / aws-efs-csi-driver-operator

The aws-efs-csi-driver-operator installs and maintains the AWS EFS CSI Driver on a cluster.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-efs-csi-driver operator

An operator to deploy the AWS EFS CSI driver in OKD.

This operator is installed by OLM.

Quick start

To build and run the operator locally:

# Create only the resources the operator needs to run via CLI
oc apply -f - <<EOF
apiVersion: operator.openshift.io/v1
kind: ClusterCSIDriver
metadata:
    name: efs.csi.aws.com
spec:
  logLevel: Normal
  managementState: Managed
  operatorLogLevel: Trace
EOF

# Build the operator
make

# Set the environment variables
export DRIVER_IMAGE=amazon/aws-efs-csi-driver:v1.1.1
export NODE_DRIVER_REGISTRAR_IMAGE=quay.io/openshift/origin-csi-node-driver-registrar:latest
export LIVENESS_PROBE_IMAGE=quay.io/openshift/origin-csi-livenessprobe:4.8
export OPERATOR_NAME=aws-efs-csi-driver-operator

# Run the operator via CLI
./aws-efs-csi-driver-operator start --kubeconfig $KUBECONFIG --namespace openshift-cluster-csi-drivers

OLM

To build an bundle + index images, use hack/create-bundle.

cd hack
./create-bundle registry.ci.openshift.org/ocp/4.9:aws-efs-csi-driver registry.ci.openshift.org/ocp/4.9:aws-efs-csi-driver-operator quay.io/<my-repo>/efs-bundle quay.io/<my-repo>/efs-index

At the end it will print a command that creates Subscription for the newly created index image.

TODO: update the example to use quay.io/openshift once the images are mirrored there. registry.ci.openshift.org is not public.

About

The aws-efs-csi-driver-operator installs and maintains the AWS EFS CSI Driver on a cluster.

License:Apache License 2.0


Languages

Language:Go 82.4%Language:Shell 10.0%Language:Makefile 5.3%Language:Dockerfile 2.2%