Skip to content

Commit

Permalink
chore: add make helm-install-with-operator (#104)
Browse files Browse the repository at this point in the history
Fix #103

Signed-off-by: Hunter Gregory <[email protected]>
  • Loading branch information
huntergregory authored Mar 21, 2024
1 parent e5f6b8e commit 4721e9a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,22 @@ helm-install: manifests
--set operator.enabled=false \
--set enabledPlugin_linux="\[dropreason\,packetforward\,linuxutil\,dns\]"

helm-install-with-operator: manifests
helm upgrade --install retina ./deploy/manifests/controller/helm/retina/ \
--namespace kube-system \
--set image.repository=$(IMAGE_REGISTRY)/$(RETINA_IMAGE) \
--set image.initRepository=$(IMAGE_REGISTRY)/$(RETINA_INIT_IMAGE) \
--set image.tag=$(HELM_IMAGE_TAG) \
--set operator.tag=$(HELM_IMAGE_TAG) \
--set image.pullPolicy=Always \
--set logLevel=info \
--set os.windows=true \
--set operator.enabled=true \
--set operator.enableRetinaEndpoint=true \
--set operator.repository=$(IMAGE_REGISTRY)/$(RETINA_OPERATOR_IMAGE) \
--skip-crds \
--set enabledPlugin_linux="\[dropreason\,packetforward\,linuxutil\,dns\,packetparser\]"

# advanced/pod-level mode with scale limitations, where metrics are aggregated by source and destination Pod
helm-install-advanced-remote-context: manifests
helm upgrade --install retina ./deploy/manifests/controller/helm/retina/ \
Expand Down

0 comments on commit 4721e9a

Please sign in to comment.