* refactor: os-system namespace in yaml * refactor: new namespace structure * Update system-frontend.yaml * Update lldap-deployment.yaml * refactor: bump system server version * fix: bfl and gpu scheduler * fix: kubesphere,studio-server image * tapr: bump components version * chore(ks_server): os-system namespace split * backup-server: bump components version * fix: remove nats-box * fix: restore backup svc name * files: bump components version * fix: replace backup deployment name * fix: change lldap and sys-event namespace * refactor(gpu): update hami to use gpu-scheduler in os-gpu * fix: sign cert for otel * fix: template bug * fix: template bug * fix: missing namespace * fix: namespace label and network policy bug * fix: service namespace --------- Co-authored-by: Peng Peng <billpengpeng@gmail.com> Co-authored-by: hys <hysyeah@gmail.com> Co-authored-by: yyh <24493052+yongheng2016@users.noreply.github.com> Co-authored-by: aby913 <aby913@163.com> Co-authored-by: dkeven <dkvvven@gmail.com>
21 lines
460 B
Go
21 lines
460 B
Go
package templates
|
|
|
|
import (
|
|
"text/template"
|
|
|
|
"github.com/lithammer/dedent"
|
|
)
|
|
|
|
var BackupConfigMap = template.Must(template.New("cm-backup-config.yaml").Parse(
|
|
dedent.Dedent(`apiVersion: v1
|
|
data:
|
|
terminus.cloudVersion: "{{ .CloudInstance }}"
|
|
backup.clusterBucket: "{{ .StorageBucket }}"
|
|
backup.keyPrefix: "{{ .StoragePrefix }}"
|
|
backup.secret: "{{ .StorageSyncSecret }}"
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: backup-config
|
|
namespace: os-framework`),
|
|
))
|