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

Fix tekton reconciliation after upgrade to ocp 4.12 #273

Merged
merged 2 commits into from
Oct 13, 2023
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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/3scale/saas-operator
go 1.20

require (
github.com/3scale-ops/basereconciler v0.3.2
github.com/3scale-ops/basereconciler v0.3.3
github.com/3scale-ops/marin3r v0.12.2
github.com/MakeNowJust/heredoc v1.0.0
github.com/aws/aws-sdk-go-v2 v1.21.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d/g
contrib.go.opencensus.io/exporter/prometheus v0.4.0 h1:0QfIkj9z/iVZgK31D9H9ohjjIDApI2GOPScCKwxedbs=
contrib.go.opencensus.io/exporter/prometheus v0.4.0/go.mod h1:o7cosnyfuPVK0tB8q0QmaQNhGnptITnPQB+z1+qeFB0=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
github.com/3scale-ops/basereconciler v0.3.2 h1:mBekSSp4ccMK1inBWYnlbFmSGcEWtixq2yZrqdMYfQc=
github.com/3scale-ops/basereconciler v0.3.2/go.mod h1:SY0phdSkPSdE1BFR0MzS9Ze9y33+hGhuZGJIk2+AxFk=
github.com/3scale-ops/basereconciler v0.3.3 h1:NEr9cfQuouUjTMMnqgdvsbTorVONw/8AHrwHOtNAdOY=
github.com/3scale-ops/basereconciler v0.3.3/go.mod h1:tPJ50gfzbDC52reWkDDaEHO1leuRx9JzqggwIRA+cL0=
github.com/3scale-ops/marin3r v0.12.2 h1:sU4N7RZ5AQzfejrfP0KgpagmL/XD8a5NdSIv1qvaAnU=
github.com/3scale-ops/marin3r v0.12.2/go.mod h1:BOU7EFv58PgPMgKgJFDd4ingfBhH6KC2AGJoD7i9SaU=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
Expand Down
2 changes: 2 additions & 0 deletions pkg/generators/system/tekton_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ func (gen *SystemTektonGenerator) pipeline() func() *pipelinev1beta1.Pipeline {
StringVal: fmt.Sprint(*gen.Image.Name),
Type: pipelinev1beta1.ParamTypeString,
},
Type: pipelinev1beta1.ParamTypeString,
},
{
Name: "container-tag",
Expand All @@ -38,6 +39,7 @@ func (gen *SystemTektonGenerator) pipeline() func() *pipelinev1beta1.Pipeline {
StringVal: fmt.Sprint(*gen.Image.Tag),
Type: pipelinev1beta1.ParamTypeString,
},
Type: pipelinev1beta1.ParamTypeString,
},
},
Tasks: []pipelinev1beta1.PipelineTask{
Expand Down
2 changes: 2 additions & 0 deletions pkg/generators/system/tekton_task.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ func (gen *SystemTektonGenerator) task() func() *pipelinev1beta1.Task {
StringVal: fmt.Sprint(*gen.Image.Name),
Type: pipelinev1beta1.ParamTypeString,
},
Type: pipelinev1beta1.ParamTypeString,
},
{
Name: "container-tag",
Expand All @@ -42,6 +43,7 @@ func (gen *SystemTektonGenerator) task() func() *pipelinev1beta1.Task {
StringVal: fmt.Sprint(*gen.Image.Tag),
Type: pipelinev1beta1.ParamTypeString,
},
Type: pipelinev1beta1.ParamTypeString,
},
},
StepTemplate: &pipelinev1beta1.StepTemplate{
Expand Down
Loading