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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ _testmain.go
/charts/opscenter-features/charts
/charts/platform-opscenter/charts
/charts/service-gateway/charts
/charts/service-vault/charts
5 changes: 5 additions & 0 deletions apis/installer/v1alpha1/ace_options_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ type AceOptionsSpec struct {
PgOutbox AceOptionsComponentSpec `json:"pgoutbox"`
OutboxSyncer AceOptionsComponentSpec `json:"outbox-syncer"`
S3proxy AceOptionsComponentSpec `json:"s3proxy"`
SecretManagement AceOptionsSecretManagement `json:"secretManagement"`
Branding AceBrandingSpec `json:"branding"`
CloudProviderOptions CloudProviderOptions `json:"cloudProviderOptions"`
InitialSetup configapi.AceSetupInlineOptions `json:"initialSetup"`
Expand Down Expand Up @@ -158,6 +159,10 @@ type HelmRepositories struct {
AppscodeChartsOci string `json:"appscode-charts-oci"`
}

type AceOptionsSecretManagement struct {
Vault AceOptionsComponentSpec `json:"vault"`
}

type AceOptionsComponentSpec struct {
Enabled bool `json:"enabled"`
//+optional
Expand Down
49 changes: 48 additions & 1 deletion apis/installer/v1alpha1/service_vault_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ package v1alpha1
import (
catgwapi "go.bytebuilders.dev/catalog/api/gateway/v1alpha1"

core "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"kmodules.xyz/resource-metadata/apis/shared"
)
Expand Down Expand Up @@ -47,14 +49,59 @@ type ServiceVault struct {
type ServiceVaultSpec struct {
NameOverride string `json:"nameOverride"`
FullnameOverride string `json:"fullnameOverride"`
Global ServiceVaultGlobalValues `json:"global"`
ClusterMetadata StashClusterMetadata `json:"clusterMetadata"`
Infra catgwapi.ServiceProviderInfra `json:"infra"`
GatewayDns catgwapi.ServiceGatewayDns `json:"gateway-dns"`
// +optional
VaultServer LocalObjectReference `json:"vaultServer"`
VaultServer VaultServerSpec `json:"vaultServer"`
// +optional
Distro shared.DistroSpec `json:"distro"`
}

type ServiceVaultGlobalValues struct {
License string `json:"license"`
LicenseSecretName string `json:"licenseSecretName"`
Registry string `json:"registry"`
RegistryFQDN string `json:"registryFQDN"`
ImagePullSecrets []string `json:"imagePullSecrets"`
// +optional
Distro shared.DistroSpec `json:"distro"`
}

type VaultServerSpec struct {
Name string `json:"name"`
Version string `json:"version"`
Replicas int32 `json:"replicas"`
IsolateTenants bool `json:"isolateTenants"`
ServiceType core.ServiceType `json:"serviceType"`
TerminationPolicy string `json:"terminationPolicy"`
Persistence VaultPersistenceSpec `json:"persistence"`
Unsealer VaultUnsealerSpec `json:"unsealer"`
TLS VaultTLSSpec `json:"tls"`
Relay VaultRelaySpec `json:"relay"`
}

type VaultPersistenceSpec struct {
StorageClassName string `json:"storageClassName"`
Size resource.Quantity `json:"size"`
}

type VaultUnsealerSpec struct {
SecretShares int32 `json:"secretShares"`
SecretThreshold int32 `json:"secretThreshold"`
}

type VaultTLSSpec struct {
CASecretName string `json:"caSecretName"`
}

type VaultRelaySpec struct {
ClusterSet string `json:"clusterSet"`
Namespace string `json:"namespace"`
BootstrapTokenTTL string `json:"bootstrapTokenTTL"`
}

// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

// ServiceVaultList is a list of ServiceVaults
Expand Down
122 changes: 121 additions & 1 deletion apis/installer/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions catalog/imagelist.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
- alpine:3.20
- bats/bats:1.11.0
- docker.io/openbao/openbao:2.4.3
- docker.io/openbao/openbao:2.6.1
- ghcr.io/appscode-images/ingress-nginx-controller:v1.15.1
- ghcr.io/appscode-images/nats:2.12.6-alpine
- ghcr.io/appscode-images/registry:3.1.1
- ghcr.io/appscode-images/vault:1.10.3
- ghcr.io/appscode-images/vault:1.11.5
- ghcr.io/appscode-images/vault:1.12.1
- ghcr.io/appscode-images/vault:1.13.3
- ghcr.io/appscode-images/vault:1.14.10
- ghcr.io/appscode-images/vault:1.15.6
- ghcr.io/appscode-images/vault:1.16.3
- ghcr.io/appscode-images/vault:1.17.6
- ghcr.io/appscode-images/vault:1.18.4
- ghcr.io/appscode/ace:v0.2.0
- ghcr.io/appscode/acerproxy:v0.2.0
- ghcr.io/appscode/aceshifter:v0.0.3
Expand Down Expand Up @@ -39,7 +50,11 @@
- ghcr.io/appscode/smtprelay:v0.0.4
- ghcr.io/appscode/trickster:v2.0.0
- ghcr.io/appscode/website:v2026.9.11
- ghcr.io/kubevault/vault-exporter:v0.1.1
- ghcr.io/kubevault/vault-operator:v0.25.0
- ghcr.io/kubevault/vault-unsealer:v0.25.0
- ghcr.io/opnpulse/perses:v2026.4.24
- ghcr.io/sigilr/openbao:2.6.1-sigilr.1
- ghcr.io/voyagermesh/crd-manager:v0.3.0
- ghcr.io/voyagermesh/echoserver:v20221109
- ghcr.io/voyagermesh/envoy:v1.38.3-ac
Expand Down
2 changes: 2 additions & 0 deletions charts/ace-installer-certified-crds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ The following table lists the configurable parameters of the `ace-installer-cert
| helm.releases.prom-label-proxy.version | | <code>"v2026.4.30"</code> |
| helm.releases.reloader.enabled | | <code>true</code> |
| helm.releases.reloader.version | | <code>"2.2.9"</code> |
| helm.releases.service-vault.enabled | | <code>false</code> |
| helm.releases.service-vault.version | | <code>"v2026.9.11"</code> |
| helm.releases.service-gateway-presets.enabled | | <code>false</code> |
| helm.releases.service-gateway-presets.version | | <code>"v2026.9.11"</code> |
| helm.releases.stash-presets.enabled | | <code>false</code> |
Expand Down
3 changes: 3 additions & 0 deletions charts/ace-installer-certified-crds/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ helm:
reloader:
enabled: true
version: "2.2.9"
service-vault:
enabled: false
version: "v2026.9.11"
service-gateway-presets:
enabled: false
version: "v2026.9.11"
Expand Down
Loading
Loading