2020-03-18 17:24:33 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "v1_persistent_volume_spec.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_persistent_volume_spec_t *v1_persistent_volume_spec_create(
|
|
|
|
|
list_t *access_modes,
|
|
|
|
|
v1_aws_elastic_block_store_volume_source_t *aws_elastic_block_store,
|
|
|
|
|
v1_azure_disk_volume_source_t *azure_disk,
|
|
|
|
|
v1_azure_file_persistent_volume_source_t *azure_file,
|
|
|
|
|
list_t* capacity,
|
|
|
|
|
v1_ceph_fs_persistent_volume_source_t *cephfs,
|
|
|
|
|
v1_cinder_persistent_volume_source_t *cinder,
|
|
|
|
|
v1_object_reference_t *claim_ref,
|
|
|
|
|
v1_csi_persistent_volume_source_t *csi,
|
|
|
|
|
v1_fc_volume_source_t *fc,
|
|
|
|
|
v1_flex_persistent_volume_source_t *flex_volume,
|
|
|
|
|
v1_flocker_volume_source_t *flocker,
|
|
|
|
|
v1_gce_persistent_disk_volume_source_t *gce_persistent_disk,
|
|
|
|
|
v1_glusterfs_persistent_volume_source_t *glusterfs,
|
|
|
|
|
v1_host_path_volume_source_t *host_path,
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *iscsi,
|
|
|
|
|
v1_local_volume_source_t *local,
|
|
|
|
|
list_t *mount_options,
|
|
|
|
|
v1_nfs_volume_source_t *nfs,
|
|
|
|
|
v1_volume_node_affinity_t *node_affinity,
|
2022-06-05 18:16:17 +00:00
|
|
|
char *persistent_volume_reclaim_policy,
|
2020-03-18 17:24:33 +08:00
|
|
|
v1_photon_persistent_disk_volume_source_t *photon_persistent_disk,
|
|
|
|
|
v1_portworx_volume_source_t *portworx_volume,
|
|
|
|
|
v1_quobyte_volume_source_t *quobyte,
|
|
|
|
|
v1_rbd_persistent_volume_source_t *rbd,
|
|
|
|
|
v1_scale_io_persistent_volume_source_t *scale_io,
|
|
|
|
|
char *storage_class_name,
|
|
|
|
|
v1_storage_os_persistent_volume_source_t *storageos,
|
|
|
|
|
char *volume_mode,
|
|
|
|
|
v1_vsphere_virtual_disk_volume_source_t *vsphere_volume
|
|
|
|
|
) {
|
|
|
|
|
v1_persistent_volume_spec_t *v1_persistent_volume_spec_local_var = malloc(sizeof(v1_persistent_volume_spec_t));
|
|
|
|
|
if (!v1_persistent_volume_spec_local_var) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
v1_persistent_volume_spec_local_var->access_modes = access_modes;
|
|
|
|
|
v1_persistent_volume_spec_local_var->aws_elastic_block_store = aws_elastic_block_store;
|
|
|
|
|
v1_persistent_volume_spec_local_var->azure_disk = azure_disk;
|
|
|
|
|
v1_persistent_volume_spec_local_var->azure_file = azure_file;
|
|
|
|
|
v1_persistent_volume_spec_local_var->capacity = capacity;
|
|
|
|
|
v1_persistent_volume_spec_local_var->cephfs = cephfs;
|
|
|
|
|
v1_persistent_volume_spec_local_var->cinder = cinder;
|
|
|
|
|
v1_persistent_volume_spec_local_var->claim_ref = claim_ref;
|
|
|
|
|
v1_persistent_volume_spec_local_var->csi = csi;
|
|
|
|
|
v1_persistent_volume_spec_local_var->fc = fc;
|
|
|
|
|
v1_persistent_volume_spec_local_var->flex_volume = flex_volume;
|
|
|
|
|
v1_persistent_volume_spec_local_var->flocker = flocker;
|
|
|
|
|
v1_persistent_volume_spec_local_var->gce_persistent_disk = gce_persistent_disk;
|
|
|
|
|
v1_persistent_volume_spec_local_var->glusterfs = glusterfs;
|
|
|
|
|
v1_persistent_volume_spec_local_var->host_path = host_path;
|
|
|
|
|
v1_persistent_volume_spec_local_var->iscsi = iscsi;
|
|
|
|
|
v1_persistent_volume_spec_local_var->local = local;
|
|
|
|
|
v1_persistent_volume_spec_local_var->mount_options = mount_options;
|
|
|
|
|
v1_persistent_volume_spec_local_var->nfs = nfs;
|
|
|
|
|
v1_persistent_volume_spec_local_var->node_affinity = node_affinity;
|
|
|
|
|
v1_persistent_volume_spec_local_var->persistent_volume_reclaim_policy = persistent_volume_reclaim_policy;
|
|
|
|
|
v1_persistent_volume_spec_local_var->photon_persistent_disk = photon_persistent_disk;
|
|
|
|
|
v1_persistent_volume_spec_local_var->portworx_volume = portworx_volume;
|
|
|
|
|
v1_persistent_volume_spec_local_var->quobyte = quobyte;
|
|
|
|
|
v1_persistent_volume_spec_local_var->rbd = rbd;
|
|
|
|
|
v1_persistent_volume_spec_local_var->scale_io = scale_io;
|
|
|
|
|
v1_persistent_volume_spec_local_var->storage_class_name = storage_class_name;
|
|
|
|
|
v1_persistent_volume_spec_local_var->storageos = storageos;
|
|
|
|
|
v1_persistent_volume_spec_local_var->volume_mode = volume_mode;
|
|
|
|
|
v1_persistent_volume_spec_local_var->vsphere_volume = vsphere_volume;
|
|
|
|
|
|
|
|
|
|
return v1_persistent_volume_spec_local_var;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void v1_persistent_volume_spec_free(v1_persistent_volume_spec_t *v1_persistent_volume_spec) {
|
|
|
|
|
if(NULL == v1_persistent_volume_spec){
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
listEntry_t *listEntry;
|
2021-01-05 15:42:34 +08:00
|
|
|
if (v1_persistent_volume_spec->access_modes) {
|
|
|
|
|
list_ForEach(listEntry, v1_persistent_volume_spec->access_modes) {
|
|
|
|
|
free(listEntry->data);
|
|
|
|
|
}
|
2022-03-09 10:56:53 +08:00
|
|
|
list_freeList(v1_persistent_volume_spec->access_modes);
|
2021-01-05 15:42:34 +08:00
|
|
|
v1_persistent_volume_spec->access_modes = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->aws_elastic_block_store) {
|
|
|
|
|
v1_aws_elastic_block_store_volume_source_free(v1_persistent_volume_spec->aws_elastic_block_store);
|
|
|
|
|
v1_persistent_volume_spec->aws_elastic_block_store = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->azure_disk) {
|
|
|
|
|
v1_azure_disk_volume_source_free(v1_persistent_volume_spec->azure_disk);
|
|
|
|
|
v1_persistent_volume_spec->azure_disk = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->azure_file) {
|
|
|
|
|
v1_azure_file_persistent_volume_source_free(v1_persistent_volume_spec->azure_file);
|
|
|
|
|
v1_persistent_volume_spec->azure_file = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->capacity) {
|
|
|
|
|
list_ForEach(listEntry, v1_persistent_volume_spec->capacity) {
|
|
|
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
|
|
|
free (localKeyValue->key);
|
|
|
|
|
free (localKeyValue->value);
|
|
|
|
|
keyValuePair_free(localKeyValue);
|
|
|
|
|
}
|
2022-03-09 10:56:53 +08:00
|
|
|
list_freeList(v1_persistent_volume_spec->capacity);
|
2021-01-05 15:42:34 +08:00
|
|
|
v1_persistent_volume_spec->capacity = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->cephfs) {
|
|
|
|
|
v1_ceph_fs_persistent_volume_source_free(v1_persistent_volume_spec->cephfs);
|
|
|
|
|
v1_persistent_volume_spec->cephfs = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->cinder) {
|
|
|
|
|
v1_cinder_persistent_volume_source_free(v1_persistent_volume_spec->cinder);
|
|
|
|
|
v1_persistent_volume_spec->cinder = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->claim_ref) {
|
|
|
|
|
v1_object_reference_free(v1_persistent_volume_spec->claim_ref);
|
|
|
|
|
v1_persistent_volume_spec->claim_ref = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->csi) {
|
|
|
|
|
v1_csi_persistent_volume_source_free(v1_persistent_volume_spec->csi);
|
|
|
|
|
v1_persistent_volume_spec->csi = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->fc) {
|
|
|
|
|
v1_fc_volume_source_free(v1_persistent_volume_spec->fc);
|
|
|
|
|
v1_persistent_volume_spec->fc = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->flex_volume) {
|
|
|
|
|
v1_flex_persistent_volume_source_free(v1_persistent_volume_spec->flex_volume);
|
|
|
|
|
v1_persistent_volume_spec->flex_volume = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->flocker) {
|
|
|
|
|
v1_flocker_volume_source_free(v1_persistent_volume_spec->flocker);
|
|
|
|
|
v1_persistent_volume_spec->flocker = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->gce_persistent_disk) {
|
|
|
|
|
v1_gce_persistent_disk_volume_source_free(v1_persistent_volume_spec->gce_persistent_disk);
|
|
|
|
|
v1_persistent_volume_spec->gce_persistent_disk = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->glusterfs) {
|
|
|
|
|
v1_glusterfs_persistent_volume_source_free(v1_persistent_volume_spec->glusterfs);
|
|
|
|
|
v1_persistent_volume_spec->glusterfs = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->host_path) {
|
|
|
|
|
v1_host_path_volume_source_free(v1_persistent_volume_spec->host_path);
|
|
|
|
|
v1_persistent_volume_spec->host_path = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->iscsi) {
|
|
|
|
|
v1_iscsi_persistent_volume_source_free(v1_persistent_volume_spec->iscsi);
|
|
|
|
|
v1_persistent_volume_spec->iscsi = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->local) {
|
|
|
|
|
v1_local_volume_source_free(v1_persistent_volume_spec->local);
|
|
|
|
|
v1_persistent_volume_spec->local = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->mount_options) {
|
|
|
|
|
list_ForEach(listEntry, v1_persistent_volume_spec->mount_options) {
|
|
|
|
|
free(listEntry->data);
|
|
|
|
|
}
|
2022-03-09 10:56:53 +08:00
|
|
|
list_freeList(v1_persistent_volume_spec->mount_options);
|
2021-01-05 15:42:34 +08:00
|
|
|
v1_persistent_volume_spec->mount_options = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->nfs) {
|
|
|
|
|
v1_nfs_volume_source_free(v1_persistent_volume_spec->nfs);
|
|
|
|
|
v1_persistent_volume_spec->nfs = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->node_affinity) {
|
|
|
|
|
v1_volume_node_affinity_free(v1_persistent_volume_spec->node_affinity);
|
|
|
|
|
v1_persistent_volume_spec->node_affinity = NULL;
|
|
|
|
|
}
|
2022-06-05 18:16:17 +00:00
|
|
|
if (v1_persistent_volume_spec->persistent_volume_reclaim_policy) {
|
|
|
|
|
free(v1_persistent_volume_spec->persistent_volume_reclaim_policy);
|
|
|
|
|
v1_persistent_volume_spec->persistent_volume_reclaim_policy = NULL;
|
|
|
|
|
}
|
2021-01-05 15:42:34 +08:00
|
|
|
if (v1_persistent_volume_spec->photon_persistent_disk) {
|
|
|
|
|
v1_photon_persistent_disk_volume_source_free(v1_persistent_volume_spec->photon_persistent_disk);
|
|
|
|
|
v1_persistent_volume_spec->photon_persistent_disk = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->portworx_volume) {
|
|
|
|
|
v1_portworx_volume_source_free(v1_persistent_volume_spec->portworx_volume);
|
|
|
|
|
v1_persistent_volume_spec->portworx_volume = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->quobyte) {
|
|
|
|
|
v1_quobyte_volume_source_free(v1_persistent_volume_spec->quobyte);
|
|
|
|
|
v1_persistent_volume_spec->quobyte = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->rbd) {
|
|
|
|
|
v1_rbd_persistent_volume_source_free(v1_persistent_volume_spec->rbd);
|
|
|
|
|
v1_persistent_volume_spec->rbd = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->scale_io) {
|
|
|
|
|
v1_scale_io_persistent_volume_source_free(v1_persistent_volume_spec->scale_io);
|
|
|
|
|
v1_persistent_volume_spec->scale_io = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->storage_class_name) {
|
|
|
|
|
free(v1_persistent_volume_spec->storage_class_name);
|
|
|
|
|
v1_persistent_volume_spec->storage_class_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->storageos) {
|
|
|
|
|
v1_storage_os_persistent_volume_source_free(v1_persistent_volume_spec->storageos);
|
|
|
|
|
v1_persistent_volume_spec->storageos = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->volume_mode) {
|
|
|
|
|
free(v1_persistent_volume_spec->volume_mode);
|
|
|
|
|
v1_persistent_volume_spec->volume_mode = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_persistent_volume_spec->vsphere_volume) {
|
|
|
|
|
v1_vsphere_virtual_disk_volume_source_free(v1_persistent_volume_spec->vsphere_volume);
|
|
|
|
|
v1_persistent_volume_spec->vsphere_volume = NULL;
|
|
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
free(v1_persistent_volume_spec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cJSON *v1_persistent_volume_spec_convertToJSON(v1_persistent_volume_spec_t *v1_persistent_volume_spec) {
|
|
|
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->access_modes
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->access_modes) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *access_modes = cJSON_AddArrayToObject(item, "accessModes");
|
|
|
|
|
if(access_modes == NULL) {
|
|
|
|
|
goto fail; //primitive container
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
listEntry_t *access_modesListEntry;
|
|
|
|
|
list_ForEach(access_modesListEntry, v1_persistent_volume_spec->access_modes) {
|
|
|
|
|
if(cJSON_AddStringToObject(access_modes, "", (char*)access_modesListEntry->data) == NULL)
|
|
|
|
|
{
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->aws_elastic_block_store
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->aws_elastic_block_store) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *aws_elastic_block_store_local_JSON = v1_aws_elastic_block_store_volume_source_convertToJSON(v1_persistent_volume_spec->aws_elastic_block_store);
|
|
|
|
|
if(aws_elastic_block_store_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "awsElasticBlockStore", aws_elastic_block_store_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->azure_disk
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->azure_disk) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *azure_disk_local_JSON = v1_azure_disk_volume_source_convertToJSON(v1_persistent_volume_spec->azure_disk);
|
|
|
|
|
if(azure_disk_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "azureDisk", azure_disk_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->azure_file
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->azure_file) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *azure_file_local_JSON = v1_azure_file_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->azure_file);
|
|
|
|
|
if(azure_file_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "azureFile", azure_file_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->capacity
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->capacity) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *capacity = cJSON_AddObjectToObject(item, "capacity");
|
|
|
|
|
if(capacity == NULL) {
|
|
|
|
|
goto fail; //primitive map container
|
|
|
|
|
}
|
|
|
|
|
cJSON *localMapObject = capacity;
|
|
|
|
|
listEntry_t *capacityListEntry;
|
|
|
|
|
if (v1_persistent_volume_spec->capacity) {
|
|
|
|
|
list_ForEach(capacityListEntry, v1_persistent_volume_spec->capacity) {
|
|
|
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*)capacityListEntry->data;
|
|
|
|
|
if(cJSON_AddStringToObject(localMapObject, localKeyValue->key, (char*)localKeyValue->value) == NULL)
|
|
|
|
|
{
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->cephfs
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->cephfs) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *cephfs_local_JSON = v1_ceph_fs_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->cephfs);
|
|
|
|
|
if(cephfs_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "cephfs", cephfs_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->cinder
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->cinder) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *cinder_local_JSON = v1_cinder_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->cinder);
|
|
|
|
|
if(cinder_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "cinder", cinder_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->claim_ref
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->claim_ref) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *claim_ref_local_JSON = v1_object_reference_convertToJSON(v1_persistent_volume_spec->claim_ref);
|
|
|
|
|
if(claim_ref_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "claimRef", claim_ref_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->csi
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->csi) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *csi_local_JSON = v1_csi_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->csi);
|
|
|
|
|
if(csi_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "csi", csi_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->fc
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->fc) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *fc_local_JSON = v1_fc_volume_source_convertToJSON(v1_persistent_volume_spec->fc);
|
|
|
|
|
if(fc_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "fc", fc_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->flex_volume
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->flex_volume) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *flex_volume_local_JSON = v1_flex_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->flex_volume);
|
|
|
|
|
if(flex_volume_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "flexVolume", flex_volume_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->flocker
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->flocker) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *flocker_local_JSON = v1_flocker_volume_source_convertToJSON(v1_persistent_volume_spec->flocker);
|
|
|
|
|
if(flocker_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "flocker", flocker_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->gce_persistent_disk
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->gce_persistent_disk) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *gce_persistent_disk_local_JSON = v1_gce_persistent_disk_volume_source_convertToJSON(v1_persistent_volume_spec->gce_persistent_disk);
|
|
|
|
|
if(gce_persistent_disk_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "gcePersistentDisk", gce_persistent_disk_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->glusterfs
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->glusterfs) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *glusterfs_local_JSON = v1_glusterfs_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->glusterfs);
|
|
|
|
|
if(glusterfs_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "glusterfs", glusterfs_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->host_path
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->host_path) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *host_path_local_JSON = v1_host_path_volume_source_convertToJSON(v1_persistent_volume_spec->host_path);
|
|
|
|
|
if(host_path_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "hostPath", host_path_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->iscsi
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->iscsi) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *iscsi_local_JSON = v1_iscsi_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->iscsi);
|
|
|
|
|
if(iscsi_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "iscsi", iscsi_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->local
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->local) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *local_local_JSON = v1_local_volume_source_convertToJSON(v1_persistent_volume_spec->local);
|
|
|
|
|
if(local_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "local", local_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->mount_options
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->mount_options) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *mount_options = cJSON_AddArrayToObject(item, "mountOptions");
|
|
|
|
|
if(mount_options == NULL) {
|
|
|
|
|
goto fail; //primitive container
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
listEntry_t *mount_optionsListEntry;
|
|
|
|
|
list_ForEach(mount_optionsListEntry, v1_persistent_volume_spec->mount_options) {
|
|
|
|
|
if(cJSON_AddStringToObject(mount_options, "", (char*)mount_optionsListEntry->data) == NULL)
|
|
|
|
|
{
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->nfs
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->nfs) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *nfs_local_JSON = v1_nfs_volume_source_convertToJSON(v1_persistent_volume_spec->nfs);
|
|
|
|
|
if(nfs_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "nfs", nfs_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->node_affinity
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->node_affinity) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *node_affinity_local_JSON = v1_volume_node_affinity_convertToJSON(v1_persistent_volume_spec->node_affinity);
|
|
|
|
|
if(node_affinity_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "nodeAffinity", node_affinity_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->persistent_volume_reclaim_policy
|
2022-06-05 18:16:17 +00:00
|
|
|
if(v1_persistent_volume_spec->persistent_volume_reclaim_policy) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "persistentVolumeReclaimPolicy", v1_persistent_volume_spec->persistent_volume_reclaim_policy) == NULL) {
|
|
|
|
|
goto fail; //String
|
2020-03-18 17:24:33 +08:00
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->photon_persistent_disk
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->photon_persistent_disk) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *photon_persistent_disk_local_JSON = v1_photon_persistent_disk_volume_source_convertToJSON(v1_persistent_volume_spec->photon_persistent_disk);
|
|
|
|
|
if(photon_persistent_disk_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "photonPersistentDisk", photon_persistent_disk_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->portworx_volume
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->portworx_volume) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *portworx_volume_local_JSON = v1_portworx_volume_source_convertToJSON(v1_persistent_volume_spec->portworx_volume);
|
|
|
|
|
if(portworx_volume_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "portworxVolume", portworx_volume_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->quobyte
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->quobyte) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *quobyte_local_JSON = v1_quobyte_volume_source_convertToJSON(v1_persistent_volume_spec->quobyte);
|
|
|
|
|
if(quobyte_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "quobyte", quobyte_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->rbd
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->rbd) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *rbd_local_JSON = v1_rbd_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->rbd);
|
|
|
|
|
if(rbd_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "rbd", rbd_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->scale_io
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->scale_io) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *scale_io_local_JSON = v1_scale_io_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->scale_io);
|
|
|
|
|
if(scale_io_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "scaleIO", scale_io_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->storage_class_name
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->storage_class_name) {
|
2020-03-18 17:24:33 +08:00
|
|
|
if(cJSON_AddStringToObject(item, "storageClassName", v1_persistent_volume_spec->storage_class_name) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->storageos
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->storageos) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *storageos_local_JSON = v1_storage_os_persistent_volume_source_convertToJSON(v1_persistent_volume_spec->storageos);
|
|
|
|
|
if(storageos_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "storageos", storageos_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->volume_mode
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->volume_mode) {
|
2020-03-18 17:24:33 +08:00
|
|
|
if(cJSON_AddStringToObject(item, "volumeMode", v1_persistent_volume_spec->volume_mode) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->vsphere_volume
|
2022-04-18 09:29:02 +08:00
|
|
|
if(v1_persistent_volume_spec->vsphere_volume) {
|
2020-03-18 17:24:33 +08:00
|
|
|
cJSON *vsphere_volume_local_JSON = v1_vsphere_virtual_disk_volume_source_convertToJSON(v1_persistent_volume_spec->vsphere_volume);
|
|
|
|
|
if(vsphere_volume_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "vsphereVolume", vsphere_volume_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
2022-04-18 09:29:02 +08:00
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
fail:
|
|
|
|
|
if (item) {
|
|
|
|
|
cJSON_Delete(item);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v1_persistent_volume_spec_t *v1_persistent_volume_spec_parseFromJSON(cJSON *v1_persistent_volume_specJSON){
|
|
|
|
|
|
|
|
|
|
v1_persistent_volume_spec_t *v1_persistent_volume_spec_local_var = NULL;
|
|
|
|
|
|
2022-03-29 10:12:05 +08:00
|
|
|
// define the local list for v1_persistent_volume_spec->access_modes
|
|
|
|
|
list_t *access_modesList = NULL;
|
|
|
|
|
|
2021-11-05 14:13:35 +08:00
|
|
|
// define the local variable for v1_persistent_volume_spec->aws_elastic_block_store
|
|
|
|
|
v1_aws_elastic_block_store_volume_source_t *aws_elastic_block_store_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->azure_disk
|
|
|
|
|
v1_azure_disk_volume_source_t *azure_disk_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->azure_file
|
|
|
|
|
v1_azure_file_persistent_volume_source_t *azure_file_local_nonprim = NULL;
|
|
|
|
|
|
2022-03-29 10:12:05 +08:00
|
|
|
// define the local map for v1_persistent_volume_spec->capacity
|
|
|
|
|
list_t *capacityList = NULL;
|
|
|
|
|
|
2021-11-05 14:13:35 +08:00
|
|
|
// define the local variable for v1_persistent_volume_spec->cephfs
|
|
|
|
|
v1_ceph_fs_persistent_volume_source_t *cephfs_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->cinder
|
|
|
|
|
v1_cinder_persistent_volume_source_t *cinder_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->claim_ref
|
|
|
|
|
v1_object_reference_t *claim_ref_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->csi
|
|
|
|
|
v1_csi_persistent_volume_source_t *csi_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->fc
|
|
|
|
|
v1_fc_volume_source_t *fc_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->flex_volume
|
|
|
|
|
v1_flex_persistent_volume_source_t *flex_volume_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->flocker
|
|
|
|
|
v1_flocker_volume_source_t *flocker_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->gce_persistent_disk
|
|
|
|
|
v1_gce_persistent_disk_volume_source_t *gce_persistent_disk_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->glusterfs
|
|
|
|
|
v1_glusterfs_persistent_volume_source_t *glusterfs_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->host_path
|
|
|
|
|
v1_host_path_volume_source_t *host_path_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->iscsi
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *iscsi_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->local
|
|
|
|
|
v1_local_volume_source_t *local_local_nonprim = NULL;
|
|
|
|
|
|
2022-03-29 10:12:05 +08:00
|
|
|
// define the local list for v1_persistent_volume_spec->mount_options
|
|
|
|
|
list_t *mount_optionsList = NULL;
|
|
|
|
|
|
2021-11-05 14:13:35 +08:00
|
|
|
// define the local variable for v1_persistent_volume_spec->nfs
|
|
|
|
|
v1_nfs_volume_source_t *nfs_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->node_affinity
|
|
|
|
|
v1_volume_node_affinity_t *node_affinity_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->photon_persistent_disk
|
|
|
|
|
v1_photon_persistent_disk_volume_source_t *photon_persistent_disk_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->portworx_volume
|
|
|
|
|
v1_portworx_volume_source_t *portworx_volume_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->quobyte
|
|
|
|
|
v1_quobyte_volume_source_t *quobyte_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->rbd
|
|
|
|
|
v1_rbd_persistent_volume_source_t *rbd_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->scale_io
|
|
|
|
|
v1_scale_io_persistent_volume_source_t *scale_io_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->storageos
|
|
|
|
|
v1_storage_os_persistent_volume_source_t *storageos_local_nonprim = NULL;
|
|
|
|
|
|
|
|
|
|
// define the local variable for v1_persistent_volume_spec->vsphere_volume
|
|
|
|
|
v1_vsphere_virtual_disk_volume_source_t *vsphere_volume_local_nonprim = NULL;
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
// v1_persistent_volume_spec->access_modes
|
|
|
|
|
cJSON *access_modes = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "accessModes");
|
|
|
|
|
if (access_modes) {
|
2022-03-29 10:12:05 +08:00
|
|
|
cJSON *access_modes_local = NULL;
|
2020-03-18 17:24:33 +08:00
|
|
|
if(!cJSON_IsArray(access_modes)) {
|
|
|
|
|
goto end;//primitive container
|
|
|
|
|
}
|
2022-03-09 10:56:53 +08:00
|
|
|
access_modesList = list_createList();
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
cJSON_ArrayForEach(access_modes_local, access_modes)
|
|
|
|
|
{
|
|
|
|
|
if(!cJSON_IsString(access_modes_local))
|
|
|
|
|
{
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
list_addElement(access_modesList , strdup(access_modes_local->valuestring));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->aws_elastic_block_store
|
|
|
|
|
cJSON *aws_elastic_block_store = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "awsElasticBlockStore");
|
|
|
|
|
if (aws_elastic_block_store) {
|
|
|
|
|
aws_elastic_block_store_local_nonprim = v1_aws_elastic_block_store_volume_source_parseFromJSON(aws_elastic_block_store); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->azure_disk
|
|
|
|
|
cJSON *azure_disk = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "azureDisk");
|
|
|
|
|
if (azure_disk) {
|
|
|
|
|
azure_disk_local_nonprim = v1_azure_disk_volume_source_parseFromJSON(azure_disk); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->azure_file
|
|
|
|
|
cJSON *azure_file = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "azureFile");
|
|
|
|
|
if (azure_file) {
|
|
|
|
|
azure_file_local_nonprim = v1_azure_file_persistent_volume_source_parseFromJSON(azure_file); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->capacity
|
|
|
|
|
cJSON *capacity = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "capacity");
|
|
|
|
|
if (capacity) {
|
2022-03-29 10:12:05 +08:00
|
|
|
cJSON *capacity_local_map = NULL;
|
2022-09-09 10:18:51 +08:00
|
|
|
if(!cJSON_IsObject(capacity) && !cJSON_IsNull(capacity))
|
|
|
|
|
{
|
2020-03-18 17:24:33 +08:00
|
|
|
goto end;//primitive map container
|
|
|
|
|
}
|
2022-09-09 10:18:51 +08:00
|
|
|
if(cJSON_IsObject(capacity))
|
2020-03-18 17:24:33 +08:00
|
|
|
{
|
2022-09-09 10:18:51 +08:00
|
|
|
capacityList = list_createList();
|
|
|
|
|
keyValuePair_t *localMapKeyPair;
|
|
|
|
|
cJSON_ArrayForEach(capacity_local_map, capacity)
|
2020-03-18 17:24:33 +08:00
|
|
|
{
|
2022-09-09 10:18:51 +08:00
|
|
|
cJSON *localMapObject = capacity_local_map;
|
|
|
|
|
if(!cJSON_IsString(localMapObject))
|
|
|
|
|
{
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
localMapKeyPair = keyValuePair_create(strdup(localMapObject->string),strdup(localMapObject->valuestring));
|
|
|
|
|
list_addElement(capacityList , localMapKeyPair);
|
2020-03-18 17:24:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->cephfs
|
|
|
|
|
cJSON *cephfs = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "cephfs");
|
|
|
|
|
if (cephfs) {
|
|
|
|
|
cephfs_local_nonprim = v1_ceph_fs_persistent_volume_source_parseFromJSON(cephfs); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->cinder
|
|
|
|
|
cJSON *cinder = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "cinder");
|
|
|
|
|
if (cinder) {
|
|
|
|
|
cinder_local_nonprim = v1_cinder_persistent_volume_source_parseFromJSON(cinder); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->claim_ref
|
|
|
|
|
cJSON *claim_ref = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "claimRef");
|
|
|
|
|
if (claim_ref) {
|
|
|
|
|
claim_ref_local_nonprim = v1_object_reference_parseFromJSON(claim_ref); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->csi
|
|
|
|
|
cJSON *csi = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "csi");
|
|
|
|
|
if (csi) {
|
|
|
|
|
csi_local_nonprim = v1_csi_persistent_volume_source_parseFromJSON(csi); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->fc
|
|
|
|
|
cJSON *fc = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "fc");
|
|
|
|
|
if (fc) {
|
|
|
|
|
fc_local_nonprim = v1_fc_volume_source_parseFromJSON(fc); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->flex_volume
|
|
|
|
|
cJSON *flex_volume = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "flexVolume");
|
|
|
|
|
if (flex_volume) {
|
|
|
|
|
flex_volume_local_nonprim = v1_flex_persistent_volume_source_parseFromJSON(flex_volume); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->flocker
|
|
|
|
|
cJSON *flocker = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "flocker");
|
|
|
|
|
if (flocker) {
|
|
|
|
|
flocker_local_nonprim = v1_flocker_volume_source_parseFromJSON(flocker); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->gce_persistent_disk
|
|
|
|
|
cJSON *gce_persistent_disk = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "gcePersistentDisk");
|
|
|
|
|
if (gce_persistent_disk) {
|
|
|
|
|
gce_persistent_disk_local_nonprim = v1_gce_persistent_disk_volume_source_parseFromJSON(gce_persistent_disk); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->glusterfs
|
|
|
|
|
cJSON *glusterfs = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "glusterfs");
|
|
|
|
|
if (glusterfs) {
|
|
|
|
|
glusterfs_local_nonprim = v1_glusterfs_persistent_volume_source_parseFromJSON(glusterfs); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->host_path
|
|
|
|
|
cJSON *host_path = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "hostPath");
|
|
|
|
|
if (host_path) {
|
|
|
|
|
host_path_local_nonprim = v1_host_path_volume_source_parseFromJSON(host_path); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->iscsi
|
|
|
|
|
cJSON *iscsi = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "iscsi");
|
|
|
|
|
if (iscsi) {
|
|
|
|
|
iscsi_local_nonprim = v1_iscsi_persistent_volume_source_parseFromJSON(iscsi); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->local
|
|
|
|
|
cJSON *local = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "local");
|
|
|
|
|
if (local) {
|
|
|
|
|
local_local_nonprim = v1_local_volume_source_parseFromJSON(local); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->mount_options
|
|
|
|
|
cJSON *mount_options = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "mountOptions");
|
|
|
|
|
if (mount_options) {
|
2022-03-29 10:12:05 +08:00
|
|
|
cJSON *mount_options_local = NULL;
|
2020-03-18 17:24:33 +08:00
|
|
|
if(!cJSON_IsArray(mount_options)) {
|
|
|
|
|
goto end;//primitive container
|
|
|
|
|
}
|
2022-03-09 10:56:53 +08:00
|
|
|
mount_optionsList = list_createList();
|
2020-03-18 17:24:33 +08:00
|
|
|
|
|
|
|
|
cJSON_ArrayForEach(mount_options_local, mount_options)
|
|
|
|
|
{
|
|
|
|
|
if(!cJSON_IsString(mount_options_local))
|
|
|
|
|
{
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
list_addElement(mount_optionsList , strdup(mount_options_local->valuestring));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->nfs
|
|
|
|
|
cJSON *nfs = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "nfs");
|
|
|
|
|
if (nfs) {
|
|
|
|
|
nfs_local_nonprim = v1_nfs_volume_source_parseFromJSON(nfs); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->node_affinity
|
|
|
|
|
cJSON *node_affinity = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "nodeAffinity");
|
|
|
|
|
if (node_affinity) {
|
|
|
|
|
node_affinity_local_nonprim = v1_volume_node_affinity_parseFromJSON(node_affinity); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->persistent_volume_reclaim_policy
|
|
|
|
|
cJSON *persistent_volume_reclaim_policy = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "persistentVolumeReclaimPolicy");
|
|
|
|
|
if (persistent_volume_reclaim_policy) {
|
|
|
|
|
if(!cJSON_IsString(persistent_volume_reclaim_policy))
|
|
|
|
|
{
|
2022-06-05 18:16:17 +00:00
|
|
|
goto end; //String
|
2020-03-18 17:24:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->photon_persistent_disk
|
|
|
|
|
cJSON *photon_persistent_disk = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "photonPersistentDisk");
|
|
|
|
|
if (photon_persistent_disk) {
|
|
|
|
|
photon_persistent_disk_local_nonprim = v1_photon_persistent_disk_volume_source_parseFromJSON(photon_persistent_disk); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->portworx_volume
|
|
|
|
|
cJSON *portworx_volume = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "portworxVolume");
|
|
|
|
|
if (portworx_volume) {
|
|
|
|
|
portworx_volume_local_nonprim = v1_portworx_volume_source_parseFromJSON(portworx_volume); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->quobyte
|
|
|
|
|
cJSON *quobyte = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "quobyte");
|
|
|
|
|
if (quobyte) {
|
|
|
|
|
quobyte_local_nonprim = v1_quobyte_volume_source_parseFromJSON(quobyte); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->rbd
|
|
|
|
|
cJSON *rbd = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "rbd");
|
|
|
|
|
if (rbd) {
|
|
|
|
|
rbd_local_nonprim = v1_rbd_persistent_volume_source_parseFromJSON(rbd); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->scale_io
|
|
|
|
|
cJSON *scale_io = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "scaleIO");
|
|
|
|
|
if (scale_io) {
|
|
|
|
|
scale_io_local_nonprim = v1_scale_io_persistent_volume_source_parseFromJSON(scale_io); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->storage_class_name
|
|
|
|
|
cJSON *storage_class_name = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "storageClassName");
|
|
|
|
|
if (storage_class_name) {
|
|
|
|
|
if(!cJSON_IsString(storage_class_name))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->storageos
|
|
|
|
|
cJSON *storageos = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "storageos");
|
|
|
|
|
if (storageos) {
|
|
|
|
|
storageos_local_nonprim = v1_storage_os_persistent_volume_source_parseFromJSON(storageos); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->volume_mode
|
|
|
|
|
cJSON *volume_mode = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "volumeMode");
|
|
|
|
|
if (volume_mode) {
|
|
|
|
|
if(!cJSON_IsString(volume_mode))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_persistent_volume_spec->vsphere_volume
|
|
|
|
|
cJSON *vsphere_volume = cJSON_GetObjectItemCaseSensitive(v1_persistent_volume_specJSON, "vsphereVolume");
|
|
|
|
|
if (vsphere_volume) {
|
|
|
|
|
vsphere_volume_local_nonprim = v1_vsphere_virtual_disk_volume_source_parseFromJSON(vsphere_volume); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_persistent_volume_spec_local_var = v1_persistent_volume_spec_create (
|
|
|
|
|
access_modes ? access_modesList : NULL,
|
|
|
|
|
aws_elastic_block_store ? aws_elastic_block_store_local_nonprim : NULL,
|
|
|
|
|
azure_disk ? azure_disk_local_nonprim : NULL,
|
|
|
|
|
azure_file ? azure_file_local_nonprim : NULL,
|
|
|
|
|
capacity ? capacityList : NULL,
|
|
|
|
|
cephfs ? cephfs_local_nonprim : NULL,
|
|
|
|
|
cinder ? cinder_local_nonprim : NULL,
|
|
|
|
|
claim_ref ? claim_ref_local_nonprim : NULL,
|
|
|
|
|
csi ? csi_local_nonprim : NULL,
|
|
|
|
|
fc ? fc_local_nonprim : NULL,
|
|
|
|
|
flex_volume ? flex_volume_local_nonprim : NULL,
|
|
|
|
|
flocker ? flocker_local_nonprim : NULL,
|
|
|
|
|
gce_persistent_disk ? gce_persistent_disk_local_nonprim : NULL,
|
|
|
|
|
glusterfs ? glusterfs_local_nonprim : NULL,
|
|
|
|
|
host_path ? host_path_local_nonprim : NULL,
|
|
|
|
|
iscsi ? iscsi_local_nonprim : NULL,
|
|
|
|
|
local ? local_local_nonprim : NULL,
|
|
|
|
|
mount_options ? mount_optionsList : NULL,
|
|
|
|
|
nfs ? nfs_local_nonprim : NULL,
|
|
|
|
|
node_affinity ? node_affinity_local_nonprim : NULL,
|
2022-06-05 18:16:17 +00:00
|
|
|
persistent_volume_reclaim_policy ? strdup(persistent_volume_reclaim_policy->valuestring) : NULL,
|
2020-03-18 17:24:33 +08:00
|
|
|
photon_persistent_disk ? photon_persistent_disk_local_nonprim : NULL,
|
|
|
|
|
portworx_volume ? portworx_volume_local_nonprim : NULL,
|
|
|
|
|
quobyte ? quobyte_local_nonprim : NULL,
|
|
|
|
|
rbd ? rbd_local_nonprim : NULL,
|
|
|
|
|
scale_io ? scale_io_local_nonprim : NULL,
|
|
|
|
|
storage_class_name ? strdup(storage_class_name->valuestring) : NULL,
|
|
|
|
|
storageos ? storageos_local_nonprim : NULL,
|
|
|
|
|
volume_mode ? strdup(volume_mode->valuestring) : NULL,
|
|
|
|
|
vsphere_volume ? vsphere_volume_local_nonprim : NULL
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return v1_persistent_volume_spec_local_var;
|
|
|
|
|
end:
|
2022-03-29 10:12:05 +08:00
|
|
|
if (access_modesList) {
|
|
|
|
|
listEntry_t *listEntry = NULL;
|
|
|
|
|
list_ForEach(listEntry, access_modesList) {
|
|
|
|
|
free(listEntry->data);
|
|
|
|
|
listEntry->data = NULL;
|
|
|
|
|
}
|
|
|
|
|
list_freeList(access_modesList);
|
|
|
|
|
access_modesList = NULL;
|
|
|
|
|
}
|
2021-01-11 12:15:24 +08:00
|
|
|
if (aws_elastic_block_store_local_nonprim) {
|
|
|
|
|
v1_aws_elastic_block_store_volume_source_free(aws_elastic_block_store_local_nonprim);
|
|
|
|
|
aws_elastic_block_store_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (azure_disk_local_nonprim) {
|
|
|
|
|
v1_azure_disk_volume_source_free(azure_disk_local_nonprim);
|
|
|
|
|
azure_disk_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (azure_file_local_nonprim) {
|
|
|
|
|
v1_azure_file_persistent_volume_source_free(azure_file_local_nonprim);
|
|
|
|
|
azure_file_local_nonprim = NULL;
|
|
|
|
|
}
|
2022-03-29 10:12:05 +08:00
|
|
|
if (capacityList) {
|
|
|
|
|
listEntry_t *listEntry = NULL;
|
|
|
|
|
list_ForEach(listEntry, capacityList) {
|
|
|
|
|
keyValuePair_t *localKeyValue = (keyValuePair_t*) listEntry->data;
|
|
|
|
|
free(localKeyValue->key);
|
|
|
|
|
localKeyValue->key = NULL;
|
|
|
|
|
free(localKeyValue->value);
|
|
|
|
|
localKeyValue->value = NULL;
|
|
|
|
|
keyValuePair_free(localKeyValue);
|
|
|
|
|
localKeyValue = NULL;
|
|
|
|
|
}
|
|
|
|
|
list_freeList(capacityList);
|
|
|
|
|
capacityList = NULL;
|
|
|
|
|
}
|
2021-01-11 12:15:24 +08:00
|
|
|
if (cephfs_local_nonprim) {
|
|
|
|
|
v1_ceph_fs_persistent_volume_source_free(cephfs_local_nonprim);
|
|
|
|
|
cephfs_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (cinder_local_nonprim) {
|
|
|
|
|
v1_cinder_persistent_volume_source_free(cinder_local_nonprim);
|
|
|
|
|
cinder_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (claim_ref_local_nonprim) {
|
|
|
|
|
v1_object_reference_free(claim_ref_local_nonprim);
|
|
|
|
|
claim_ref_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (csi_local_nonprim) {
|
|
|
|
|
v1_csi_persistent_volume_source_free(csi_local_nonprim);
|
|
|
|
|
csi_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (fc_local_nonprim) {
|
|
|
|
|
v1_fc_volume_source_free(fc_local_nonprim);
|
|
|
|
|
fc_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (flex_volume_local_nonprim) {
|
|
|
|
|
v1_flex_persistent_volume_source_free(flex_volume_local_nonprim);
|
|
|
|
|
flex_volume_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (flocker_local_nonprim) {
|
|
|
|
|
v1_flocker_volume_source_free(flocker_local_nonprim);
|
|
|
|
|
flocker_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (gce_persistent_disk_local_nonprim) {
|
|
|
|
|
v1_gce_persistent_disk_volume_source_free(gce_persistent_disk_local_nonprim);
|
|
|
|
|
gce_persistent_disk_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (glusterfs_local_nonprim) {
|
|
|
|
|
v1_glusterfs_persistent_volume_source_free(glusterfs_local_nonprim);
|
|
|
|
|
glusterfs_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (host_path_local_nonprim) {
|
|
|
|
|
v1_host_path_volume_source_free(host_path_local_nonprim);
|
|
|
|
|
host_path_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (iscsi_local_nonprim) {
|
|
|
|
|
v1_iscsi_persistent_volume_source_free(iscsi_local_nonprim);
|
|
|
|
|
iscsi_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (local_local_nonprim) {
|
|
|
|
|
v1_local_volume_source_free(local_local_nonprim);
|
|
|
|
|
local_local_nonprim = NULL;
|
|
|
|
|
}
|
2022-03-29 10:12:05 +08:00
|
|
|
if (mount_optionsList) {
|
|
|
|
|
listEntry_t *listEntry = NULL;
|
|
|
|
|
list_ForEach(listEntry, mount_optionsList) {
|
|
|
|
|
free(listEntry->data);
|
|
|
|
|
listEntry->data = NULL;
|
|
|
|
|
}
|
|
|
|
|
list_freeList(mount_optionsList);
|
|
|
|
|
mount_optionsList = NULL;
|
|
|
|
|
}
|
2021-01-11 12:15:24 +08:00
|
|
|
if (nfs_local_nonprim) {
|
|
|
|
|
v1_nfs_volume_source_free(nfs_local_nonprim);
|
|
|
|
|
nfs_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (node_affinity_local_nonprim) {
|
|
|
|
|
v1_volume_node_affinity_free(node_affinity_local_nonprim);
|
|
|
|
|
node_affinity_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (photon_persistent_disk_local_nonprim) {
|
|
|
|
|
v1_photon_persistent_disk_volume_source_free(photon_persistent_disk_local_nonprim);
|
|
|
|
|
photon_persistent_disk_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (portworx_volume_local_nonprim) {
|
|
|
|
|
v1_portworx_volume_source_free(portworx_volume_local_nonprim);
|
|
|
|
|
portworx_volume_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (quobyte_local_nonprim) {
|
|
|
|
|
v1_quobyte_volume_source_free(quobyte_local_nonprim);
|
|
|
|
|
quobyte_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (rbd_local_nonprim) {
|
|
|
|
|
v1_rbd_persistent_volume_source_free(rbd_local_nonprim);
|
|
|
|
|
rbd_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (scale_io_local_nonprim) {
|
|
|
|
|
v1_scale_io_persistent_volume_source_free(scale_io_local_nonprim);
|
|
|
|
|
scale_io_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (storageos_local_nonprim) {
|
|
|
|
|
v1_storage_os_persistent_volume_source_free(storageos_local_nonprim);
|
|
|
|
|
storageos_local_nonprim = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (vsphere_volume_local_nonprim) {
|
|
|
|
|
v1_vsphere_virtual_disk_volume_source_free(vsphere_volume_local_nonprim);
|
|
|
|
|
vsphere_volume_local_nonprim = NULL;
|
|
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
}
|