2020-03-18 17:24:33 +08:00
|
|
|
/*
|
|
|
|
|
* v1_secret_projection.h
|
|
|
|
|
*
|
|
|
|
|
* Adapts a secret into a projected volume. The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _v1_secret_projection_H_
|
|
|
|
|
#define _v1_secret_projection_H_
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
#include "../include/list.h"
|
|
|
|
|
#include "../include/keyValuePair.h"
|
2020-06-20 09:41:15 +08:00
|
|
|
#include "../include/binary.h"
|
|
|
|
|
|
|
|
|
|
typedef struct v1_secret_projection_t v1_secret_projection_t;
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
#include "v1_key_to_path.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct v1_secret_projection_t {
|
|
|
|
|
list_t *items; //nonprimitive container
|
|
|
|
|
char *name; // string
|
|
|
|
|
int optional; //boolean
|
|
|
|
|
|
|
|
|
|
} v1_secret_projection_t;
|
|
|
|
|
|
|
|
|
|
v1_secret_projection_t *v1_secret_projection_create(
|
|
|
|
|
list_t *items,
|
|
|
|
|
char *name,
|
|
|
|
|
int optional
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
void v1_secret_projection_free(v1_secret_projection_t *v1_secret_projection);
|
|
|
|
|
|
|
|
|
|
v1_secret_projection_t *v1_secret_projection_parseFromJSON(cJSON *v1_secret_projectionJSON);
|
|
|
|
|
|
|
|
|
|
cJSON *v1_secret_projection_convertToJSON(v1_secret_projection_t *v1_secret_projection);
|
|
|
|
|
|
|
|
|
|
#endif /* _v1_secret_projection_H_ */
|
|
|
|
|
|