-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: update prometheus-operator dependency in go.mod #140
Conversation
Since we are updating the PO, do you think we could also take the opportunity to update the PO deployment under |
Good point yes. The deployment was weird anyway, it claimed to be v0.52.1 and used the config reloader from that tag. But a 0.50.0 image was deployed... 🤔 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably automate something here?
100% agree.
LGTM 👍 just two last comments:
- we might want to ship
v0.55.1
since it contains a bugfix forqueryLogFile
. - to make everything consistent we might also want to update the PO jsonnet version, under
jsonnet/jsonnetfile.json
, it's still pointing tov0.52.1
. AFAIK this is only being used to generate PrometheusRules and it will not change anything but it will make things consistent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Requesting Changes so that this does not get merged by mistake.
Like @JoaoBraveCoding pointed out, I think we should update all the files in deploy/dependencies
including cluster-roles, rolebindings etc to match what's upstream.
Next we need to update the deploy/crds/kubernetes
so that tests on kind cluster will run fine.
Does updating to 0.55.1 also limit the openshift versions we support ?
Ok lets list explicitly list what locations need updates and where/how they are to be updated. Feel free to edit this comment as needed.
|
@jan--f I think you have list everything (including more than what I could think of). I was wondering if we could replace the step (need not be in this PR but something worth thinking about) with generate using controller-gen the crds ? (
This seems to work fine. .PHONY: generate-prom-operator-crds
generate-prom-operator-crds: $(CONTROLLER_GEN)
$(CONTROLLER_GEN) crd \
paths=github.com/prometheus-operator/prometheus-operator/pkg/apis/... \
output:dir=. \
output:crd:dir=./deploy/crds/kubernetes
But generation of rbac will need to be copied from upstream since I didn't find controllers using Also
Can we use some kustomize magic to do the replacement ? |
Which rbac resource are you referring to? I think the only ones we can't generate should be covered by kustomize below? As for the CRD generation, the above snippet works indeed. However it seems we don't have any control over the version that
Looks like it, check out d8d3d7f. I'd even be inclined to just generate those resources from the upstream examples. Wdyt? |
This updates the prometheus-operator go dependency to v0.55.0. This allows specifiying additional auth options in remote_write sections. Signed-off-by: Jan Fajerski <[email protected]>
Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]>
There is no need to track the prometheus-operator dependencies, they can just be generated from the upstream artifacts. Signed-off-by: Jan Fajerski <[email protected]>
Signed-off-by: Jan Fajerski <[email protected]>
Or does |
The initial implementation I had was to use --- update --- I tested with multiple version of prometheus-operator in go.mod and it it turns out controller-gen does indeed honour
The above gives me enough confidence to use controller-gen |
Awesome, I like the go.mod and controller-gen setup. Will add this to the PR. |
Awesome work! ❤️ Looking forward to how it looks in the end! |
Makefile
Outdated
paths=github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/... \ | ||
output:dir=. \ | ||
output:crd:dir=./deploy/crds/kubernetes | ||
|
||
.PHONY: generate-crds | ||
generate-crds: $(CONTROLLER_GEN) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel generate-crds
should generate prom crds as well, WDYT?
@@ -1,11 +1,11 @@ | |||
--- | |||
---- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't it 3 -
-> ---
? 🤔
This adds a Makefile target to generate the prometheus-operator related CRD manifests with controller-gen. For this controller-gen will respect the prometheus-operator version specified in go.mod. Signed-off-by: Jan Fajerski <[email protected]>
Nice improvement @jan--f ❤️ |
This updates the prometheus-operator go dependency to v0.55.0. This
allows specifiying additional auth options in remote_write sections.
Signed-off-by: Jan Fajerski [email protected]