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

Update GeneratedValues #262

Merged
merged 1 commit into from
Nov 3, 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
6 changes: 6 additions & 0 deletions apis/installer/v1alpha1/ace_options_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ type AceDeploymentContext struct {
}

type GeneratedValues struct {
// +optional
AdminPassword string `json:"adminPassword"`
// +optional
BackupPassword string `json:"backupPassword"`
// +optional
Expand All @@ -269,6 +271,10 @@ type GeneratedValues struct {
// +optional
CsrfSecretKey string `json:"csrfSecretKey"`
// +optional
S3AccessKeyID string `json:"s3AccessKeyID"`
// +optional
S3AccessKeySecret string `json:"s3AccessKeySecret"`
// +optional
Nats map[string]string `json:"nats"`
}

Expand Down
6 changes: 6 additions & 0 deletions schema/ace-options/values.openapiv3_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ properties:
username:
type: string
type: object
adminPassword:
type: string
backupPassword:
type: string
clusterID:
Expand Down Expand Up @@ -196,6 +198,10 @@ properties:
type: string
requesterUsername:
type: string
s3AccessKeyID:
type: string
s3AccessKeySecret:
type: string
token:
type: string
required:
Expand Down
Loading