This commit is contained in:
ACoolName 2025-05-22 23:07:24 +03:00
parent 061f8d6d07
commit 95a1042c41
3 changed files with 4 additions and 2 deletions

View File

@ -85,6 +85,8 @@ spec:
type: array type: array
tag: tag:
type: string type: string
volume:
type: string
working_dir: working_dir:
type: string type: string
required: required:

View File

@ -55,7 +55,7 @@ spec:
containers: containers:
- command: - command:
- /manager - /manager
image: git.acooldomain.co/server-manager/kubernetes-operator:v0.0.5 image: git.acooldomain.co/server-manager/kubernetes-operator:v0.0.8
env: env:
- name: CONFIG_PATH - name: CONFIG_PATH
value: /etc/server-manager/config.yaml value: /etc/server-manager/config.yaml

View File

@ -668,7 +668,7 @@ func (r *ServerManagerReconciler) ServerPod(s *servermanagerv1alpha1.ServerManag
Name: "init", Name: "init",
Image: image.Spec.InitScript.Image, Image: image.Spec.InitScript.Image,
ImagePullPolicy: corev1.PullIfNotPresent, ImagePullPolicy: corev1.PullIfNotPresent,
Command: image.Spec.Command, Command: image.Spec.InitScript.Command,
Args: image.Spec.InitScript.Args, Args: image.Spec.InitScript.Args,
VolumeMounts: []corev1.VolumeMount{ VolumeMounts: []corev1.VolumeMount{
{ {