add sidecar command examples and update codegen (#2825)
This commit is contained in:
parent
9b103e764e
commit
265f2a0f1c
|
|
@ -1405,6 +1405,10 @@ configuration:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /custom-pgdata-mountpoint
|
- mountPath: /custom-pgdata-mountpoint
|
||||||
name: pgdata
|
name: pgdata
|
||||||
|
env:
|
||||||
|
- name: "ENV_VAR_NAME"
|
||||||
|
value: "any-k8s-env-things"
|
||||||
|
command: ['sh', '-c', 'echo "logging" > /opt/logs.txt']
|
||||||
- ...
|
- ...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1005,6 +1005,7 @@ spec:
|
||||||
env:
|
env:
|
||||||
- name: "ENV_VAR_NAME"
|
- name: "ENV_VAR_NAME"
|
||||||
value: "any-k8s-env-things"
|
value: "any-k8s-env-things"
|
||||||
|
command: ['sh', '-c', 'echo "logging" > /opt/logs.txt']
|
||||||
```
|
```
|
||||||
|
|
||||||
In addition to any environment variables you specify, the following environment
|
In addition to any environment variables you specify, the following environment
|
||||||
|
|
|
||||||
|
|
@ -1277,6 +1277,11 @@ func (in *Sidecar) DeepCopyInto(out *Sidecar) {
|
||||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.Command != nil {
|
||||||
|
in, out := &in.Command, &out.Command
|
||||||
|
*out = make([]string, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue