1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

Merge branch 'develop' of github.com:portainer/portainer into develop

This commit is contained in:
Anthony Lapenna 2020-07-15 14:08:15 +12:00
commit a452599829
5 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,7 @@ class KubernetesStorageClassConverter {
static apiToStorageClass(data) {
const res = new KubernetesStorageClass();
res.Name = data.metadata.name;
res.Provisioner = data.provisioner;
return res;
}
}