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
@@ -37,7 +53,7 @@ Refer to the [Operator SDK documentation](https://sdk.operatorframework.io/docs/
37
53
38
54
Build the manifests, install the CRD and run the operator as a local process:
39
55
```bash
40
-
make bundle install run
56
+
make install run
41
57
```
42
58
43
59
### Deployment with webhooks
@@ -58,16 +74,16 @@ The environment variable `CERTMANAGER_VERSION` can be used to override the cert-
58
74
CERTMANAGER_VERSION=1.60 make cert-manager
59
75
```
60
76
61
-
When deploying the operator into the cluster using `make deploy`, an image in the format `ghcr.io/${USER}/opentelemetry-operator` is generated. If this format isn't suitable, it can be overridden by:
77
+
When deploying the operator into the cluster using `make deploy`, an image in the format `ghcr.io/${DOCKER_USER}/opentelemetry-operator` is generated. If this format isn't suitable, it can be overridden by:
62
78
63
79
*`IMG_PREFIX`, to override the registry, namespace and image name
64
-
*`USER`, to override the namespace
80
+
*`DOCKER_USER`, to override the namespace
65
81
*`IMG_REPO`, to override the repository (`opentelemetry-operator`)
66
82
*`VERSION`, to override only the version part
67
83
*`IMG`, to override the entire image specification
Copy file name to clipboardexpand all lines: RELEASE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Steps to release a new version of the OpenTelemetry Operator:
4
4
5
5
1. Change the `versions.txt`, so that it lists the target version of the OpenTelemetry Collector (operand), and the desired version for the target allocator and the operator. The `major.minor` should typically match, with the patch portion being possibly different.
6
6
2. Change the `autoinstrumentation-*` versions in `versions.txt` as per the latest supported versions in `autoinstrumentation/`.
7
-
3. Run `make bundle USER=open-telemetry VERSION=0.38.0`, using the version that will be released.
7
+
3. Run `make bundle DOCKER_USER=open-telemetry VERSION=0.38.0`, using the version that will be released.
8
8
4. Change the compatibility matrix in the [readme](./README.md) file, using the OpenTelemetry Operator version to be released and the current latest Kubernetes version as the latest supported version. Remove the oldest entry.
9
9
5. Add the changes to the changelog. Manually add versions of all operator components.
10
10
6. Check the OpenTelemetry Collector's changelog and ensure migration steps are present in `pkg/collector/upgrade`
0 commit comments