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

Add set stagedIndex in stage RPA for FBCs #356

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
2 changes: 2 additions & 0 deletions pkg/konfluxgen/konfluxgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,7 @@ type rpaFBCData struct {
TargetIndex string
PublishingCredentials string
PipelineSA string
StagedIndex bool
}

func GenerateFBCReleasePlanAdmission(applications []string, resourceOutputPath string, appName string, soVersion string) error {
Expand Down Expand Up @@ -749,6 +750,7 @@ func GenerateFBCReleasePlanAdmission(applications []string, resourceOutputPath s
TargetIndex: "",
PublishingCredentials: "staged-index-fbc-publishing-credentials",
PipelineSA: "release-index-image-staging",
StagedIndex: true,
}
outputFilePath = filepath.Join(outputDir, fmt.Sprintf("%s.yaml", rpaName))
if err := executeFBCReleasePlanAdmissionTemplate(fbcData, outputFilePath); err != nil {
Expand Down
3 changes: 3 additions & 0 deletions pkg/konfluxgen/releaseplanadmission-fbc.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ spec:
policy: fbc-standard
data:
fbc:
{{{- if .StagedIndex }}}
stagedIndex: true
{{{- end }}}
fromIndex: "{{{ .FromIndex }}}"
targetIndex: "{{{ .TargetIndex }}}"
publishingCredentials: "{{{ .PublishingCredentials }}}"
Expand Down
Loading