Skip to content
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

Merged
merged 5 commits into from
May 30, 2022

Conversation

jan--f
Copy link
Collaborator

@jan--f jan--f commented May 18, 2022

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]

@jan--f jan--f requested a review from a team May 18, 2022 07:10
@jan--f jan--f force-pushed the update-po-go-dep branch from 25fa589 to c3c15eb Compare May 18, 2022 07:47
@JoaoBraveCoding
Copy link
Contributor

Since we are updating the PO, do you think we could also take the opportunity to update the PO deployment under deploy/dependencies/prometheus-operator-deployment.yaml? Otherwise we would be running PO CRD from v0.55.0 and a deployment from v0.50.0.

@jan--f
Copy link
Collaborator Author

jan--f commented May 18, 2022

Since we are updating the PO, do you think we could also take the opportunity to update the PO deployment under deploy/dependencies/prometheus-operator-deployment.yaml? Otherwise we would be running PO CRD from v0.55.0 and a deployment from v0.50.0.

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... 🤔
We should probably automate something here?

Copy link
Contributor

@JoaoBraveCoding JoaoBraveCoding left a 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 for queryLogFile.
  • to make everything consistent we might also want to update the PO jsonnet version, under jsonnet/jsonnetfile.json, it's still pointing to v0.52.1. AFAIK this is only being used to generate PrometheusRules and it will not change anything but it will make things consistent.

@jan--f jan--f mentioned this pull request May 18, 2022
simonpasquier
simonpasquier previously approved these changes May 18, 2022
Copy link
Contributor

@simonpasquier simonpasquier left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Copy link
Collaborator

@sthaha sthaha left a 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 ?

@jan--f
Copy link
Collaborator Author

jan--f commented May 18, 2022

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.

  • Update go.mod in order to include types in prometheus-operator pkg/apis/monitoring/v1/types.go and run go mod tidy
  • Update po version in jsonnet/jsonnetfile.json
  • Update version tags in deploy/dependencies/*
  • Update deploy/crds/kubernetes with files from https://github.com/prometheus-operator/prometheus-operator/tree/<version>/example/prometheus-operator-crd/

@sthaha
Copy link
Collaborator

sthaha commented May 19, 2022

@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 ? (I haven't tried this)

Update deploy/crds/kubernetes with files from https://github.com/prometheus-operator/prometheus-operator/tree//example/prometheus-operator-crd/

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 kubebuilder:rbac

Also

Update version tags in deploy/dependencies/*

Can we use some kustomize magic to do the replacement ?

@jan--f
Copy link
Collaborator Author

jan--f commented May 23, 2022

@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 ? (I haven't tried this)

Update deploy/crds/kubernetes with files from https://github.com/prometheus-operator/prometheus-operator/tree//example/prometheus-operator-crd/

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 kubebuilder:rbac

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 controller-gen uses with that path, right?
How about we simply shallow-clone the p-o repo in a temp dir and generate from that? That allows us to specify the commit we want and might make debugging a bit simpler if we ever need it.

Also

Update version tags in deploy/dependencies/*

Can we use some kustomize magic to do the replacement ?

Looks like it, check out d8d3d7f. I'd even be inclined to just generate those resources from the upstream examples. Wdyt?

jan--f added 4 commits May 23, 2022 20:41
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]>
@jan--f jan--f force-pushed the update-po-go-dep branch from 8532319 to 9b6e62a Compare May 23, 2022 18:42
@jan--f
Copy link
Collaborator Author

jan--f commented May 23, 2022

As for the CRD generation, the above snippet works indeed. However it seems we don't have any control over the version that controller-gen uses with that path, right?

Or does controller-gen simply respect what we have in go.mod? I fail to find any documentation about this 🤔

@sthaha
Copy link
Collaborator

sthaha commented May 24, 2022

Or does controller-gen simply respect what we have in go.mod? I fail to find any documentation about this 🤔

The initial implementation I had was to use go mod vendor and use the vendor/github.com/.. to generate. That way we are explicit about the version. I think it is worth reading the source a bit to see how it picks up the package to parse.

--- update ---

I tested with multiple version of prometheus-operator in go.mod and it it turns out controller-gen does indeed honour
go.mod. In fact it complains if you only update go.mod and does not find the modules locally (no go mod download .. )

❯ go clean -modcache
❯ make generate-prom-operator-crds

### on main branch gives us 
❯ ls ~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring* -d
~go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/[email protected]

### update to 0.55.1 in go.mod

❯ make generate-prom-operator-crds
 ### complains about module not downloaded 
❯ go mod download github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring   


❯ ls ~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring* -d
~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/[email protected]
~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/[email protected]

So the new module got downloaded 

### clean module and rerun it 
❯ go clean -modcache

❯ make generate-prom-operator-crds

❯ ls ~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring* -d
~/go/pkg/mod/github.com/prometheus-operator/prometheus-operator/pkg/apis/[email protected]

The above gives me enough confidence to use controller-gen

@jan--f
Copy link
Collaborator Author

jan--f commented May 24, 2022

Awesome, I like the go.mod and controller-gen setup. Will add this to the PR.

@JoaoBraveCoding
Copy link
Contributor

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)
Copy link
Collaborator

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 @@
---
----
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isn't it 3 - -> --- ? 🤔

@jan--f jan--f force-pushed the update-po-go-dep branch from 34f5970 to 76ff6fd Compare May 30, 2022 05:57
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]>
@jan--f jan--f force-pushed the update-po-go-dep branch from 76ff6fd to de31295 Compare May 30, 2022 06:04
@sthaha
Copy link
Collaborator

sthaha commented May 30, 2022

Nice improvement @jan--f ❤️

@jan--f jan--f merged commit fd6b78c into rhobs:main May 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants