-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACM-10005] Added template override annotations (#598)
* added template override annotations Signed-off-by: Disaiah Bennett <[email protected]> * updated rbac gen Signed-off-by: Disaiah Bennett <[email protected]> * updated rbac Signed-off-by: Disaiah Bennett <[email protected]> --------- Signed-off-by: Disaiah Bennett <[email protected]>
- Loading branch information
Showing
15 changed files
with
1,172 additions
and
555 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) 2024 Red Hat, Inc. | ||
// Copyright Contributors to the Open Cluster Management project | ||
|
||
package controllers | ||
|
||
// CacheSpec ... | ||
type CacheSpec struct { | ||
ImageOverrides map[string]string | ||
ImageOverridesCM string | ||
ImageRepository string | ||
TemplateOverrides map[string]string | ||
TemplateOverridesCM string | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) 2024 Red Hat, Inc. | ||
// Copyright Contributors to the Open Cluster Management project | ||
|
||
package manifest | ||
|
||
// ManifestImage contains details for a specific image version | ||
type ManifestImage struct { | ||
ImageKey string `json:"image-key"` | ||
ImageName string `json:"image-name"` | ||
ImageVersion string `json:"image-version"` | ||
|
||
// remote registry where image is stored | ||
ImageRemote string `json:"image-remote"` | ||
|
||
// immutable sha version identifier | ||
ImageDigest string `json:"image-digest"` | ||
|
||
ImageTag string `json:"image-tag"` | ||
} | ||
|
||
type ManifestTemplate struct { | ||
TemplateOverrides map[string]interface{} `json:"templateOverrides" yaml:"templateOverrides"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Copyright (c) 2024 Red Hat, Inc. | ||
// Copyright Contributors to the Open Cluster Management project | ||
|
||
package manifest |
Oops, something went wrong.