Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Generate from openapi release-1.24 #126

Merged
merged 2 commits into from
Jun 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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