Skip to content
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
11 changes: 11 additions & 0 deletions apis/installer/v1alpha1/ace_options_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -435,8 +435,19 @@ func (a AceOptionsSpec) DevDeployment() bool {
strings.HasSuffix(a.InitialSetup.Admin.Email, "@appscode.com")
}

// +kubebuilder:validation:Enum=Create;Reconfigure;Upgrade;PromoteToProd
type ActionType string

const (
ActionTypeCreate ActionType = "Create"
ActionTypeReconfigure ActionType = "Reconfigure"
ActionTypeUpgrade ActionType = "Upgrade"
ActionTypePromoteToProd ActionType = "PromoteToProd"
)

type AceDeploymentContext struct {
DeploymentType DeploymentType `json:"deploymentType"`
ActionType ActionType `json:"actionType"`
InstallerName string `json:"installerName"`
UploadID string `json:"uploadID"`
Version string `json:"version"`
Expand Down
2 changes: 2 additions & 0 deletions charts/ace-installer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ The following table lists the configurable parameters of the `ace-installer` cha
| helm.releases.flux2.version | | <code>"2.17.0"</code> |
| helm.releases.gateway-api.enabled | | <code>true</code> |
| helm.releases.gateway-api.version | | <code>"v2025.3.14"</code> |
| helm.releases.gateway-api-crds.enabled | | <code>true</code> |
| helm.releases.gateway-api-crds.version | | <code>v1.4.1</code> |
| helm.releases.kubedb.enabled | | <code>true</code> |
| helm.releases.kubedb.version | | <code>"v2026.2.26"</code> |
| helm.releases.kubedb.values | | <code>{"kubedb-autoscaler":{"enabled":true},"kubedb-catalog":{"enabled":true},"kubedb-kubestash-catalog":{"enabled":true},"kubedb-metrics":{"enabled":false},"kubedb-ops-manager":{"enabled":true},"kubedb-provisioner":{"enabled":true},"kubedb-schema-manager":{"enabled":false},"sidekick":{"enabled":false}}</code> |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ spec:
dependsOn:
- name: opscenter-features
namespace: {{ $.Release.Namespace }}
{{- if eq (include "distro.openshift" $) "false" }}
- name: gateway-api
namespace: {{ $.Release.Namespace }}
{{- end }}
chart:
spec:
chart: cert-manager
Expand Down
3 changes: 3 additions & 0 deletions charts/ace-installer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ helm:
gateway-api:
enabled: true
version: "v2025.3.14"
gateway-api-crds:
enabled: true
version: v1.4.1
kubedb:
enabled: true
version: "v2026.2.26"
Expand Down
8 changes: 8 additions & 0 deletions schema/ace-options/values.openapiv3_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@ properties:
type: object
context:
properties:
actionType:
enum:
- Create
- Reconfigure
- Upgrade
- PromoteToProd
type: string
adminPassword:
type: string
backupPassword:
Expand Down Expand Up @@ -320,6 +327,7 @@ properties:
version:
type: string
required:
- actionType
- deploymentType
- inboxServer
- installerName
Expand Down
Loading