mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
fix(kubernetes/pods): save note (#4675)
* feat(kubernetes/pods): introduce patch api * feat(k8s/pods): pod converter * feat(kubernetes/pods): introduce patch api * feat(k8s/pod): add annotations only if needed * fix(k8s/pod): replace class with factory function
This commit is contained in:
parent
2b257d2785
commit
46ff8a01bc
4 changed files with 132 additions and 1 deletions
45
app/kubernetes/pod/payloads/create.js
Normal file
45
app/kubernetes/pod/payloads/create.js
Normal file
|
@ -0,0 +1,45 @@
|
|||
import { KubernetesCommonMetadataPayload } from 'Kubernetes/models/common/payloads';
|
||||
|
||||
export function createPayloadFactory() {
|
||||
return {
|
||||
metadata: new KubernetesCommonMetadataPayload(),
|
||||
spec: {
|
||||
replicas: 0,
|
||||
selector: {
|
||||
matchLabels: {
|
||||
app: '',
|
||||
},
|
||||
},
|
||||
strategy: {
|
||||
type: 'RollingUpdate',
|
||||
rollingUpdate: {
|
||||
maxSurge: 0,
|
||||
maxUnavailable: '100%',
|
||||
},
|
||||
},
|
||||
template: {
|
||||
metadata: {
|
||||
labels: {
|
||||
app: '',
|
||||
},
|
||||
},
|
||||
spec: {
|
||||
affinity: {},
|
||||
containers: [
|
||||
{
|
||||
name: '',
|
||||
image: '',
|
||||
env: [],
|
||||
resources: {
|
||||
limits: {},
|
||||
requests: {},
|
||||
},
|
||||
volumeMounts: [],
|
||||
},
|
||||
],
|
||||
volumes: [],
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue