mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-09 07:22:40 -04:00
AB#2635: Deploy Konnectivity via Helm
This commit is contained in:
parent
7283eeb798
commit
3e71459898
24 changed files with 484 additions and 230 deletions
|
@ -46,6 +46,7 @@ type ChartLoader struct {
|
|||
autoscalerImage string
|
||||
verificationServiceImage string
|
||||
gcpGuestAgentImage string
|
||||
konnectivityImage string
|
||||
}
|
||||
|
||||
// New creates a new ChartLoader.
|
||||
|
@ -69,6 +70,7 @@ func New(csp cloudprovider.Provider, k8sVersion versions.ValidK8sVersion) *Chart
|
|||
autoscalerImage: versions.VersionConfigs[k8sVersion].ClusterAutoscalerImage,
|
||||
verificationServiceImage: versions.VerificationImage,
|
||||
gcpGuestAgentImage: versions.GcpGuestImage,
|
||||
konnectivityImage: versions.KonnectivityAgentImage,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -388,6 +390,9 @@ func (i *ChartLoader) loadConstellationServicesHelper(config *config.Config, mas
|
|||
"gcp-guest-agent": map[string]any{
|
||||
"image": i.gcpGuestAgentImage,
|
||||
},
|
||||
"konnectivity": map[string]any{
|
||||
"image": i.konnectivityImage,
|
||||
},
|
||||
}
|
||||
|
||||
switch csp {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue