Add missing packages

- `version` is used for getting the operator version and the operator SDK version in the logs.
- `k8suitl` is extracted from the operator-sdk to be able to fetch the namespace the operator is deployed to. This is used to deploy Connect in the same namespace if `MANAGE_CONNECT` is set to `true`. In the future, we may want to no rely on this, since this functionality is internal in the operator-sdk.
This commit is contained in:
Eddy Filip
2022-09-13 16:10:25 +03:00
parent 28c3ffade7
commit 75501e5b1c
2 changed files with 55 additions and 0 deletions

6
version/version.go Normal file
View File

@@ -0,0 +1,6 @@
package version
var (
OperatorVersion = "1.5.0"
OperatorSDKVersion = "1.23.0"
)