You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade dependencies and Makefile improvements - Chunk 1 (#256)
* fix(cve): CVE-2025-22869 golang.org/x/crypto
* chore: Add convience make targets for easier development
* chore(deps): Update golang.org/x/net v0.39.0
* chore: Add more convinience Makefile functions for local dev
* chore(deps): Upgrade to github.com/containerd/containerd v1.7.27
* chore: Restore original kustomization.yaml
1. Create a copy of the file `config/samples/instana_v1_instanaagent.yaml`, for the below steps we're assuming `config/samples/instana_v1_instanaagent_demo.yaml`
123
123
2. In this file, put correct values for e.g. the Agent `key`, `endpointHost` and `endpointPort`.
124
-
3.Build the Operator image: `make docker-build`
124
+
3.Overwrite the default image name with a dev build `export IMG=delivery.instana.io/dev-sandbox-docker-all/${USER}/instana-agent-operator:latest` and build the Operator image: `make docker-build`
125
125
4. For deploying on Minikube, there's a convenient target `make deploy-minikube`. For any other environment you would
126
126
need to first push the Docker image to a valid repository using `make docker-push`, then do the deployment
127
-
using `make deploy` to deploy the Operator to the cluster configured for `kubectl`.
128
-
5. Deploy the custom resource earlier created using `kubectl apply -f config/samples/instana_v1_instanaagent_demo.yaml`
127
+
using `make deploy` to deploy the Operator to the cluster configured for `kubectl`. Note: For non-public registries you might need to create a pull secret first, see `make create-pull-secret` for Instana's Artifactory usage.
128
+
5. Deploy the custom resource earlier created using `kubectl apply -f config/samples/instana_v1_instanaagent_demo.yaml` or via `make create-cr`
129
129
130
130
Now you should have a successful running Operator.
0 commit comments