stream logs through standard input and new remote client cli command
parent
83491d9e75
commit
d1a2969bf6
|
@ -3840,7 +3840,7 @@ class KubernetesStorage {
|
|||
storageClassName: `manual`,
|
||||
capacity: { storage: `10Gi` },
|
||||
accessModes: ['ReadWriteOnce'],
|
||||
hostPath: { path: `/data` },
|
||||
hostPath: { path: `/data/${pvcName}` },
|
||||
},
|
||||
};
|
||||
await kubeClient.createPersistentVolume(hostPathVolume);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -110,7 +110,7 @@ class KubernetesStorage {
|
|||
storageClassName: `manual`,
|
||||
capacity: { storage: `10Gi` },
|
||||
accessModes: ['ReadWriteOnce'],
|
||||
hostPath: { path: `/data` },
|
||||
hostPath: { path: `/data/${pvcName}` },
|
||||
},
|
||||
};
|
||||
await kubeClient.createPersistentVolume(hostPathVolume);
|
||||
|
|
Loading…
Reference in New Issue