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: add parameters to the TierTemplateRevision CRD #1107

Merged
merged 21 commits into from
Dec 2, 2024
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8d24435
remove spacebinding request migration controller
mfrancisc Dec 7, 2023
a25fb02
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Jan 2, 2024
fd840c6
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 7, 2024
0221d40
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 14, 2024
0f4717d
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Feb 19, 2024
0977ae6
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Mar 26, 2024
7aa35c5
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 3, 2024
d09f3b8
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 4, 2024
79c20ca
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Apr 25, 2024
b21f39f
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc May 27, 2024
b0aea00
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc May 31, 2024
e9e35bc
Merge branch 'master' of github.com:mfrancisc/host-operator
mfrancisc Jul 29, 2024
969562e
Merge branch 'master' of github.com:mfrancisc/host-operator
Aug 28, 2024
344bc04
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 12, 2024
ea71877
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 23, 2024
ef294f7
Merge branch 'master' of github.com:mfrancisc/host-operator
Sep 27, 2024
1f8d51d
Merge branch 'master' of github.com:mfrancisc/host-operator
Oct 31, 2024
b27cde7
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 6, 2024
bbb2689
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 18, 2024
ec51de9
Merge branch 'master' of github.com:mfrancisc/host-operator
Nov 28, 2024
4cfc547
add parameters in TierTemplateRevision
Nov 28, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.12.0
creationTimestamp: null
mfrancisc marked this conversation as resolved.
Show resolved Hide resolved
name: tiertemplaterevisions.toolchain.dev.openshift.com
spec:
group: toolchain.dev.openshift.com
Expand Down Expand Up @@ -40,6 +39,30 @@ spec:
spec:
description: TierTemplateRevisionSpec defines the desired state of TierTemplateRevision
properties:
parameters:
description: Parameters is an optional array of Parameters which will
be used to replace the variables present in the TemplateObjects
list when provisioning a Space.
items:
description: Parameter defines a name/value variable that is to
be processed during TierTemplate creation.
properties:
name:
description: Name must be set and it can be referenced in the
TierTemplate content using {{.NAME}}
type: string
value:
description: Value holds the Parameter data. The value replaces
all occurrences of the Parameter {{.NAME}}.
type: string
required:
- name
- value
type: object
type: array
x-kubernetes-list-map-keys:
- name
x-kubernetes-list-type: map
templateObjects:
description: TemplateObjects contains list of Unstructured Objects
that can be parsed at runtime and will be applied as part of the
Expand Down
Loading