Skip to content

Commit

Permalink
Merge pull request #126 from kubernetes-client/automated-generate-008…
Browse files Browse the repository at this point in the history
…07b1d

Automated Generate from openapi release-1.24
  • Loading branch information
k8s-ci-robot committed Jun 8, 2022
2 parents 70fef17 + 1b43ec1 commit 0e1055b
Show file tree
Hide file tree
Showing 309 changed files with 11,289 additions and 15,938 deletions.
2 changes: 1 addition & 1 deletion examples/create_pod/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ void create_a_pod(apiClient_t * apiClient)
v1_container_t *con = calloc(1, sizeof(v1_container_t));
con->name = strdup("my-container");
con->image = strdup("ubuntu:latest");
con->image_pull_policy = kubernetes_v1_container_IMAGEPULLPOLICY_IfNotPresent;
con->image_pull_policy = strdup("IfNotPresent");

/* set command for container */
list_t *commandlist = list_createList();
Expand Down
2 changes: 1 addition & 1 deletion examples/multi_thread/create_pod.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static void create_a_pod(apiClient_t * apiClient)
v1_container_t *con = calloc(1, sizeof(v1_container_t));
con->name = strdup("my-container");
con->image = strdup("ubuntu:latest");
con->image_pull_policy = kubernetes_v1_container_IMAGEPULLPOLICY_IfNotPresent;
con->image_pull_policy = strdup("IfNotPresent");

/* set command for container */
list_t *commandlist = list_createList();
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/.openapi-generator/COMMIT
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Requested Commit: master
Actual Commit: 86ead27a409bf88118148d5dc11cb74915742347
Actual Commit: 6cd246931e5e48469c793b31162640eadd1c5e7f
Loading

0 comments on commit 0e1055b

Please sign in to comment.