Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Development Guide

Running locally

This method is often lower lift since it doesn't require a container image to be built and pushed. The operator is run locally (i.e. with go run .) and depends on local K8s to interact with a K8s cluster.

  1. Run the operator

    # We currently have no webhooks anyway, so ENABLE_WEBHOOKS=false is optional
    make run ENABLE_WEBHOOKS=false
    
    # Running with debug logs enabled
    make run ARGS="--zap-log-level=debug" ENABLE_WEBH