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

Configure renovate to pin k8s and controller-runtime for dev preview and pin ocp #183

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,7 @@ require (
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)

// mschuppert: map to latest commit from release-4.13 tag
// must consistent within modules and service operators
replace github.com/openshift/api => github.com/openshift/api v0.0.0-20230414143018-3367bc7e6ac7 //allow-merging
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ github.com/onsi/ginkgo/v2 v2.11.0 h1:WgqUCUt/lT6yXoQ8Wef0fsNn5cAuMK7+KT9UFRz2tcU
github.com/onsi/ginkgo/v2 v2.11.0/go.mod h1:ZhrRA5XmEE3x3rhlzamx/JJvujdZoJ2uvgI7kR0iZvM=
github.com/onsi/gomega v1.27.8 h1:gegWiwZjBsf2DgiSbf5hpokZ98JVDMcWkUiigk6/KXc=
github.com/onsi/gomega v1.27.8/go.mod h1:2J8vzI/s+2shY9XHRApDkdgPo1TKT7P2u6fXeJKFnNQ=
github.com/openshift/api v3.9.0+incompatible h1:fJ/KsefYuZAjmrr3+5U9yZIZbTOpVkDDLDLFresAeYs=
github.com/openshift/api v3.9.0+incompatible/go.mod h1:dh9o4Fs58gpFXGSYfnVxGR9PnV53I8TW84pQaJDdGiY=
github.com/openshift/api v0.0.0-20230414143018-3367bc7e6ac7 h1:rncLxJBpFGqBztyxCMwNRnMjhhIDOWHJowi6q8G6koI=
github.com/openshift/api v0.0.0-20230414143018-3367bc7e6ac7/go.mod h1:ctXNyWanKEjGj8sss1KjjHQ3ENKFm33FFnS5BKaIPh4=
github.com/openstack-k8s-operators/infra-operator/apis v0.0.0-20230717054643-27820dc98d9b h1:PyoDPkMtoyONKTF1YNDBRMtDgidAOBwSs3FLEbic300=
github.com/openstack-k8s-operators/infra-operator/apis v0.0.0-20230717054643-27820dc98d9b/go.mod h1:uuwrYRvdp5VwsWJpA47MnDT+UQjX1UWixagit7FzwV8=
github.com/openstack-k8s-operators/keystone-operator/api v0.0.0-20230712131157-1c2b04a11102 h1:OIJcPtczTnxy3LaY/mMWX5k0GvXbgHPuKsDDEkv6LRI=
Expand Down
18 changes: 10 additions & 8 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@
},
{
"groupName": "k8s.io",
"matchPackagePrefixes": [
"k8s.io",
"sigs.k8s.io"
],
"schedule": [
"every weekend"
],
"allowedVersions": "< 1.0.0"
"matchPackagePatterns": ["^k8s.io"],
"excludePackagePatterns": ["^k8s.io/kube-openapi"],
"allowedVersions": "< 0.27.0",
"enabled": true
},
{
"groupName": "sigs.k8s.io/controller-runtime",
"matchPackagePatterns": ["^sigs.k8s.io/controller-runtime"],
"allowedVersions": "< 0.15.0",
"enabled": true
}
],
"postUpgradeTasks": {
Expand Down