...

Source file src/github.com/chaos-mesh/chaos-mesh/pkg/dashboard/swaggerdocs/docs.go

Documentation: github.com/chaos-mesh/chaos-mesh/pkg/dashboard/swaggerdocs

     1  // Package swaggerdocs GENERATED BY SWAG; DO NOT EDIT
     2  // This file was generated by swaggo/swag
     3  package swaggerdocs
     4  
     5  import "github.com/swaggo/swag"
     6  
     7  const docTemplate = `{
     8      "schemes": {{ marshal .Schemes }},
     9      "swagger": "2.0",
    10      "info": {
    11          "description": "{{escape .Description}}",
    12          "title": "{{.Title}}",
    13          "contact": {
    14              "name": "GitHub Issues",
    15              "url": "https://github.com/chaos-mesh/chaos-mesh/issues"
    16          },
    17          "license": {
    18              "name": "Apache 2.0",
    19              "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
    20          },
    21          "version": "{{.Version}}"
    22      },
    23      "host": "{{.Host}}",
    24      "basePath": "{{.BasePath}}",
    25      "paths": {
    26          "/archives": {
    27              "get": {
    28                  "description": "Get archived chaos experiments.",
    29                  "produces": [
    30                      "application/json"
    31                  ],
    32                  "tags": [
    33                      "archives"
    34                  ],
    35                  "summary": "Get archived chaos experiments.",
    36                  "parameters": [
    37                      {
    38                          "type": "string",
    39                          "description": "namespace",
    40                          "name": "namespace",
    41                          "in": "query"
    42                      },
    43                      {
    44                          "type": "string",
    45                          "description": "name",
    46                          "name": "name",
    47                          "in": "query"
    48                      },
    49                      {
    50                          "enum": [
    51                              "PodChaos",
    52                              "IOChaos",
    53                              "NetworkChaos",
    54                              "TimeChaos",
    55                              "KernelChaos",
    56                              "StressChaos"
    57                          ],
    58                          "type": "string",
    59                          "description": "kind",
    60                          "name": "kind",
    61                          "in": "query"
    62                      }
    63                  ],
    64                  "responses": {
    65                      "200": {
    66                          "description": "OK",
    67                          "schema": {
    68                              "type": "array",
    69                              "items": {
    70                                  "$ref": "#/definitions/types.Archive"
    71                              }
    72                          }
    73                      },
    74                      "500": {
    75                          "description": "Internal Server Error",
    76                          "schema": {
    77                              "$ref": "#/definitions/utils.APIError"
    78                          }
    79                      }
    80                  }
    81              },
    82              "delete": {
    83                  "description": "Delete the specified archived experiment.",
    84                  "produces": [
    85                      "application/json"
    86                  ],
    87                  "tags": [
    88                      "archives"
    89                  ],
    90                  "summary": "Delete the specified archived experiment.",
    91                  "parameters": [
    92                      {
    93                          "type": "string",
    94                          "description": "uids",
    95                          "name": "uids",
    96                          "in": "query",
    97                          "required": true
    98                      }
    99                  ],
   100                  "responses": {
   101                      "200": {
   102                          "description": "OK",
   103                          "schema": {
   104                              "$ref": "#/definitions/utils.Response"
   105                          }
   106                      },
   107                      "500": {
   108                          "description": "Internal Server Error",
   109                          "schema": {
   110                              "$ref": "#/definitions/utils.APIError"
   111                          }
   112                      }
   113                  }
   114              }
   115          },
   116          "/archives/schedules": {
   117              "get": {
   118                  "description": "Get archived schedule experiments.",
   119                  "produces": [
   120                      "application/json"
   121                  ],
   122                  "tags": [
   123                      "archives"
   124                  ],
   125                  "summary": "Get archived schedule experiments.",
   126                  "parameters": [
   127                      {
   128                          "type": "string",
   129                          "description": "namespace",
   130                          "name": "namespace",
   131                          "in": "query"
   132                      },
   133                      {
   134                          "type": "string",
   135                          "description": "name",
   136                          "name": "name",
   137                          "in": "query"
   138                      }
   139                  ],
   140                  "responses": {
   141                      "200": {
   142                          "description": "OK",
   143                          "schema": {
   144                              "type": "array",
   145                              "items": {
   146                                  "$ref": "#/definitions/types.Archive"
   147                              }
   148                          }
   149                      },
   150                      "500": {
   151                          "description": "Internal Server Error",
   152                          "schema": {
   153                              "$ref": "#/definitions/utils.APIError"
   154                          }
   155                      }
   156                  }
   157              },
   158              "delete": {
   159                  "description": "Delete the specified archived schedule.",
   160                  "produces": [
   161                      "application/json"
   162                  ],
   163                  "tags": [
   164                      "archives"
   165                  ],
   166                  "summary": "Delete the specified archived schedule.",
   167                  "parameters": [
   168                      {
   169                          "type": "string",
   170                          "description": "uids",
   171                          "name": "uids",
   172                          "in": "query",
   173                          "required": true
   174                      }
   175                  ],
   176                  "responses": {
   177                      "200": {
   178                          "description": "OK",
   179                          "schema": {
   180                              "$ref": "#/definitions/utils.Response"
   181                          }
   182                      },
   183                      "500": {
   184                          "description": "Internal Server Error",
   185                          "schema": {
   186                              "$ref": "#/definitions/utils.APIError"
   187                          }
   188                      }
   189                  }
   190              }
   191          },
   192          "/archives/schedules/{uid}": {
   193              "get": {
   194                  "description": "Get the detail of an archived schedule experiment.",
   195                  "produces": [
   196                      "application/json"
   197                  ],
   198                  "tags": [
   199                      "archives"
   200                  ],
   201                  "summary": "Get the detail of an archived schedule experiment.",
   202                  "parameters": [
   203                      {
   204                          "type": "string",
   205                          "description": "uid",
   206                          "name": "uid",
   207                          "in": "path",
   208                          "required": true
   209                      }
   210                  ],
   211                  "responses": {
   212                      "200": {
   213                          "description": "OK",
   214                          "schema": {
   215                              "$ref": "#/definitions/types.ArchiveDetail"
   216                          }
   217                      },
   218                      "500": {
   219                          "description": "Internal Server Error",
   220                          "schema": {
   221                              "$ref": "#/definitions/utils.APIError"
   222                          }
   223                      }
   224                  }
   225              },
   226              "delete": {
   227                  "description": "Delete the specified archived schedule.",
   228                  "produces": [
   229                      "application/json"
   230                  ],
   231                  "tags": [
   232                      "archives"
   233                  ],
   234                  "summary": "Delete the specified archived schedule.",
   235                  "parameters": [
   236                      {
   237                          "type": "string",
   238                          "description": "uid",
   239                          "name": "uid",
   240                          "in": "path",
   241                          "required": true
   242                      }
   243                  ],
   244                  "responses": {
   245                      "200": {
   246                          "description": "OK",
   247                          "schema": {
   248                              "$ref": "#/definitions/utils.Response"
   249                          }
   250                      },
   251                      "500": {
   252                          "description": "Internal Server Error",
   253                          "schema": {
   254                              "$ref": "#/definitions/utils.APIError"
   255                          }
   256                      }
   257                  }
   258              }
   259          },
   260          "/archives/workflows": {
   261              "get": {
   262                  "description": "Get archived workflow.",
   263                  "produces": [
   264                      "application/json"
   265                  ],
   266                  "tags": [
   267                      "archives"
   268                  ],
   269                  "summary": "Get archived workflow.",
   270                  "parameters": [
   271                      {
   272                          "type": "string",
   273                          "description": "namespace",
   274                          "name": "namespace",
   275                          "in": "query"
   276                      },
   277                      {
   278                          "type": "string",
   279                          "description": "name",
   280                          "name": "name",
   281                          "in": "query"
   282                      }
   283                  ],
   284                  "responses": {
   285                      "200": {
   286                          "description": "OK",
   287                          "schema": {
   288                              "type": "array",
   289                              "items": {
   290                                  "$ref": "#/definitions/types.Archive"
   291                              }
   292                          }
   293                      },
   294                      "500": {
   295                          "description": "Internal Server Error",
   296                          "schema": {
   297                              "$ref": "#/definitions/utils.APIError"
   298                          }
   299                      }
   300                  }
   301              },
   302              "delete": {
   303                  "description": "Delete the specified archived workflows.",
   304                  "produces": [
   305                      "application/json"
   306                  ],
   307                  "tags": [
   308                      "archives"
   309                  ],
   310                  "summary": "Delete the specified archived workflows.",
   311                  "parameters": [
   312                      {
   313                          "type": "string",
   314                          "description": "uids",
   315                          "name": "uids",
   316                          "in": "query",
   317                          "required": true
   318                      }
   319                  ],
   320                  "responses": {
   321                      "200": {
   322                          "description": "OK",
   323                          "schema": {
   324                              "$ref": "#/definitions/utils.Response"
   325                          }
   326                      },
   327                      "500": {
   328                          "description": "Internal Server Error",
   329                          "schema": {
   330                              "$ref": "#/definitions/utils.APIError"
   331                          }
   332                      }
   333                  }
   334              }
   335          },
   336          "/archives/workflows/{uid}": {
   337              "get": {
   338                  "description": "Get the detail of an archived workflow.",
   339                  "produces": [
   340                      "application/json"
   341                  ],
   342                  "tags": [
   343                      "archives"
   344                  ],
   345                  "summary": "Get the detail of an archived workflow.",
   346                  "parameters": [
   347                      {
   348                          "type": "string",
   349                          "description": "uid",
   350                          "name": "uid",
   351                          "in": "path",
   352                          "required": true
   353                      }
   354                  ],
   355                  "responses": {
   356                      "200": {
   357                          "description": "OK",
   358                          "schema": {
   359                              "$ref": "#/definitions/types.ArchiveDetail"
   360                          }
   361                      },
   362                      "500": {
   363                          "description": "Internal Server Error",
   364                          "schema": {
   365                              "$ref": "#/definitions/utils.APIError"
   366                          }
   367                      }
   368                  }
   369              },
   370              "delete": {
   371                  "description": "Delete the specified archived workflow.",
   372                  "produces": [
   373                      "application/json"
   374                  ],
   375                  "tags": [
   376                      "archives"
   377                  ],
   378                  "summary": "Delete the specified archived workflow.",
   379                  "parameters": [
   380                      {
   381                          "type": "string",
   382                          "description": "uid",
   383                          "name": "uid",
   384                          "in": "path",
   385                          "required": true
   386                      }
   387                  ],
   388                  "responses": {
   389                      "200": {
   390                          "description": "OK",
   391                          "schema": {
   392                              "$ref": "#/definitions/utils.Response"
   393                          }
   394                      },
   395                      "500": {
   396                          "description": "Internal Server Error",
   397                          "schema": {
   398                              "$ref": "#/definitions/utils.APIError"
   399                          }
   400                      }
   401                  }
   402              }
   403          },
   404          "/archives/{uid}": {
   405              "get": {
   406                  "description": "Get the archived chaos experiment's detail by uid.",
   407                  "produces": [
   408                      "application/json"
   409                  ],
   410                  "tags": [
   411                      "archives"
   412                  ],
   413                  "summary": "Get an archived chaos experiment.",
   414                  "parameters": [
   415                      {
   416                          "type": "string",
   417                          "description": "the archive uid",
   418                          "name": "uid",
   419                          "in": "path",
   420                          "required": true
   421                      }
   422                  ],
   423                  "responses": {
   424                      "200": {
   425                          "description": "OK",
   426                          "schema": {
   427                              "$ref": "#/definitions/types.ArchiveDetail"
   428                          }
   429                      },
   430                      "404": {
   431                          "description": "Not Found",
   432                          "schema": {
   433                              "$ref": "#/definitions/utils.APIError"
   434                          }
   435                      },
   436                      "500": {
   437                          "description": "Internal Server Error",
   438                          "schema": {
   439                              "$ref": "#/definitions/utils.APIError"
   440                          }
   441                      }
   442                  }
   443              },
   444              "delete": {
   445                  "description": "Delete the specified archived experiment.",
   446                  "produces": [
   447                      "application/json"
   448                  ],
   449                  "tags": [
   450                      "archives"
   451                  ],
   452                  "summary": "Delete the specified archived experiment.",
   453                  "parameters": [
   454                      {
   455                          "type": "string",
   456                          "description": "uid",
   457                          "name": "uid",
   458                          "in": "path",
   459                          "required": true
   460                      }
   461                  ],
   462                  "responses": {
   463                      "200": {
   464                          "description": "OK",
   465                          "schema": {
   466                              "$ref": "#/definitions/utils.Response"
   467                          }
   468                      },
   469                      "500": {
   470                          "description": "Internal Server Error",
   471                          "schema": {
   472                              "$ref": "#/definitions/utils.APIError"
   473                          }
   474                      }
   475                  }
   476              }
   477          },
   478          "/common/annotations": {
   479              "get": {
   480                  "description": "Get the annotations of the pods in the specified namespace from Kubernetes cluster.",
   481                  "produces": [
   482                      "application/json"
   483                  ],
   484                  "tags": [
   485                      "common"
   486                  ],
   487                  "summary": "Get the annotations of the pods in the specified namespace from Kubernetes cluster.",
   488                  "parameters": [
   489                      {
   490                          "type": "string",
   491                          "description": "The pod's namespace list, split by ,",
   492                          "name": "podNamespaceList",
   493                          "in": "query",
   494                          "required": true
   495                      }
   496                  ],
   497                  "responses": {
   498                      "200": {
   499                          "description": "OK",
   500                          "schema": {
   501                              "$ref": "#/definitions/utils.MapStringSliceResponse"
   502                          }
   503                      },
   504                      "500": {
   505                          "description": "Internal Server Error",
   506                          "schema": {
   507                              "$ref": "#/definitions/utils.APIError"
   508                          }
   509                      }
   510                  }
   511              }
   512          },
   513          "/common/chaos-available-namespaces": {
   514              "get": {
   515                  "description": "Get all namespaces which could inject chaos(explosion scope) from Kubernetes cluster.",
   516                  "produces": [
   517                      "application/json"
   518                  ],
   519                  "tags": [
   520                      "common"
   521                  ],
   522                  "summary": "Get all namespaces which could inject chaos(explosion scope) from Kubernetes cluster.",
   523                  "responses": {
   524                      "200": {
   525                          "description": "OK",
   526                          "schema": {
   527                              "type": "array",
   528                              "items": {
   529                                  "type": "string"
   530                              }
   531                          }
   532                      },
   533                      "500": {
   534                          "description": "Internal Server Error",
   535                          "schema": {
   536                              "$ref": "#/definitions/utils.APIError"
   537                          }
   538                      }
   539                  }
   540              }
   541          },
   542          "/common/config": {
   543              "get": {
   544                  "description": "Get the config of Dashboard.",
   545                  "produces": [
   546                      "application/json"
   547                  ],
   548                  "tags": [
   549                      "common"
   550                  ],
   551                  "summary": "Get the config of Dashboard.",
   552                  "responses": {
   553                      "200": {
   554                          "description": "OK",
   555                          "schema": {
   556                              "$ref": "#/definitions/config.ChaosDashboardConfig"
   557                          }
   558                      },
   559                      "500": {
   560                          "description": "Internal Server Error",
   561                          "schema": {
   562                              "$ref": "#/definitions/utils.APIError"
   563                          }
   564                      }
   565                  }
   566              }
   567          },
   568          "/common/kinds": {
   569              "get": {
   570                  "description": "Get all chaos kinds from Kubernetes cluster.",
   571                  "produces": [
   572                      "application/json"
   573                  ],
   574                  "tags": [
   575                      "common"
   576                  ],
   577                  "summary": "Get all chaos kinds from Kubernetes cluster.",
   578                  "responses": {
   579                      "200": {
   580                          "description": "OK",
   581                          "schema": {
   582                              "type": "array",
   583                              "items": {
   584                                  "type": "string"
   585                              }
   586                          }
   587                      },
   588                      "500": {
   589                          "description": "Internal Server Error",
   590                          "schema": {
   591                              "$ref": "#/definitions/utils.APIError"
   592                          }
   593                      }
   594                  }
   595              }
   596          },
   597          "/common/labels": {
   598              "get": {
   599                  "description": "Get the labels of the pods in the specified namespace from Kubernetes cluster.",
   600                  "produces": [
   601                      "application/json"
   602                  ],
   603                  "tags": [
   604                      "common"
   605                  ],
   606                  "summary": "Get the labels of the pods in the specified namespace from Kubernetes cluster.",
   607                  "parameters": [
   608                      {
   609                          "type": "string",
   610                          "description": "The pod's namespace list, split by ,",
   611                          "name": "podNamespaceList",
   612                          "in": "query",
   613                          "required": true
   614                      }
   615                  ],
   616                  "responses": {
   617                      "200": {
   618                          "description": "OK",
   619                          "schema": {
   620                              "$ref": "#/definitions/utils.MapStringSliceResponse"
   621                          }
   622                      },
   623                      "500": {
   624                          "description": "Internal Server Error",
   625                          "schema": {
   626                              "$ref": "#/definitions/utils.APIError"
   627                          }
   628                      }
   629                  }
   630              }
   631          },
   632          "/common/namespaces": {
   633              "get": {
   634                  "description": "Get all from Kubernetes cluster.",
   635                  "produces": [
   636                      "application/json"
   637                  ],
   638                  "tags": [
   639                      "common"
   640                  ],
   641                  "summary": "Get all namespaces from Kubernetes cluster.",
   642                  "deprecated": true,
   643                  "responses": {
   644                      "200": {
   645                          "description": "OK",
   646                          "schema": {
   647                              "type": "array",
   648                              "items": {
   649                                  "type": "string"
   650                              }
   651                          }
   652                      },
   653                      "500": {
   654                          "description": "Internal Server Error",
   655                          "schema": {
   656                              "$ref": "#/definitions/utils.APIError"
   657                          }
   658                      }
   659                  }
   660              }
   661          },
   662          "/common/physicalmachine-annotations": {
   663              "get": {
   664                  "description": "Get the annotations of the physicalMachines in the specified namespace from Kubernetes cluster.",
   665                  "produces": [
   666                      "application/json"
   667                  ],
   668                  "tags": [
   669                      "common"
   670                  ],
   671                  "summary": "Get the annotations of the physicalMachines in the specified namespace from Kubernetes cluster.",
   672                  "parameters": [
   673                      {
   674                          "type": "string",
   675                          "description": "The physicalMachine's namespace list, split by ,",
   676                          "name": "physicalMachineNamespaceList",
   677                          "in": "query",
   678                          "required": true
   679                      }
   680                  ],
   681                  "responses": {
   682                      "200": {
   683                          "description": "OK",
   684                          "schema": {
   685                              "$ref": "#/definitions/utils.MapStringSliceResponse"
   686                          }
   687                      },
   688                      "500": {
   689                          "description": "Internal Server Error",
   690                          "schema": {
   691                              "$ref": "#/definitions/utils.APIError"
   692                          }
   693                      }
   694                  }
   695              }
   696          },
   697          "/common/physicalmachine-labels": {
   698              "get": {
   699                  "description": "Get the labels of the physicalMachines in the specified namespace from Kubernetes cluster.",
   700                  "produces": [
   701                      "application/json"
   702                  ],
   703                  "tags": [
   704                      "common"
   705                  ],
   706                  "summary": "Get the labels of the physicalMachines in the specified namespace from Kubernetes cluster.",
   707                  "parameters": [
   708                      {
   709                          "type": "string",
   710                          "description": "The physicalMachine's namespace list, split by ,",
   711                          "name": "physicalMachineNamespaceList",
   712                          "in": "query",
   713                          "required": true
   714                      }
   715                  ],
   716                  "responses": {
   717                      "200": {
   718                          "description": "OK",
   719                          "schema": {
   720                              "$ref": "#/definitions/utils.MapStringSliceResponse"
   721                          }
   722                      },
   723                      "500": {
   724                          "description": "Internal Server Error",
   725                          "schema": {
   726                              "$ref": "#/definitions/utils.APIError"
   727                          }
   728                      }
   729                  }
   730              }
   731          },
   732          "/common/physicalmachines": {
   733              "post": {
   734                  "description": "Get physicalMachines from Kubernetes cluster.",
   735                  "produces": [
   736                      "application/json"
   737                  ],
   738                  "tags": [
   739                      "common"
   740                  ],
   741                  "summary": "Get physicalMachines from Kubernetes cluster.",
   742                  "parameters": [
   743                      {
   744                          "description": "Request body",
   745                          "name": "request",
   746                          "in": "body",
   747                          "required": true,
   748                          "schema": {
   749                              "$ref": "#/definitions/v1alpha1.PhysicalMachineSelectorSpec"
   750                          }
   751                      }
   752                  ],
   753                  "responses": {
   754                      "200": {
   755                          "description": "OK",
   756                          "schema": {
   757                              "type": "array",
   758                              "items": {
   759                                  "$ref": "#/definitions/types.PhysicalMachine"
   760                              }
   761                          }
   762                      },
   763                      "500": {
   764                          "description": "Internal Server Error",
   765                          "schema": {
   766                              "$ref": "#/definitions/utils.APIError"
   767                          }
   768                      }
   769                  }
   770              }
   771          },
   772          "/common/pods": {
   773              "post": {
   774                  "description": "Get pods from Kubernetes cluster.",
   775                  "produces": [
   776                      "application/json"
   777                  ],
   778                  "tags": [
   779                      "common"
   780                  ],
   781                  "summary": "Get pods from Kubernetes cluster.",
   782                  "parameters": [
   783                      {
   784                          "description": "Request body",
   785                          "name": "request",
   786                          "in": "body",
   787                          "required": true,
   788                          "schema": {
   789                              "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
   790                          }
   791                      }
   792                  ],
   793                  "responses": {
   794                      "200": {
   795                          "description": "OK",
   796                          "schema": {
   797                              "type": "array",
   798                              "items": {
   799                                  "$ref": "#/definitions/types.Pod"
   800                              }
   801                          }
   802                      },
   803                      "500": {
   804                          "description": "Internal Server Error",
   805                          "schema": {
   806                              "$ref": "#/definitions/utils.APIError"
   807                          }
   808                      }
   809                  }
   810              }
   811          },
   812          "/common/rbac-config": {
   813              "get": {
   814                  "description": "Get the rbac config according to the user's choice.",
   815                  "produces": [
   816                      "application/json"
   817                  ],
   818                  "tags": [
   819                      "common"
   820                  ],
   821                  "summary": "Get the rbac config according to the user's choice.",
   822                  "parameters": [
   823                      {
   824                          "type": "string",
   825                          "description": "The namespace of RBAC",
   826                          "name": "namespace",
   827                          "in": "query"
   828                      },
   829                      {
   830                          "type": "string",
   831                          "description": "The role of RBAC",
   832                          "name": "role",
   833                          "in": "query"
   834                      }
   835                  ],
   836                  "responses": {
   837                      "200": {
   838                          "description": "OK",
   839                          "schema": {
   840                              "type": "object",
   841                              "additionalProperties": {
   842                                  "type": "string"
   843                              }
   844                          }
   845                      },
   846                      "500": {
   847                          "description": "Internal Server Error",
   848                          "schema": {
   849                              "$ref": "#/definitions/utils.APIError"
   850                          }
   851                      }
   852                  }
   853              }
   854          },
   855          "/events": {
   856              "get": {
   857                  "description": "Get events from db.",
   858                  "produces": [
   859                      "application/json"
   860                  ],
   861                  "tags": [
   862                      "events"
   863                  ],
   864                  "summary": "list events.",
   865                  "parameters": [
   866                      {
   867                          "type": "string",
   868                          "description": "The create time of events",
   869                          "name": "created_at",
   870                          "in": "query"
   871                      },
   872                      {
   873                          "type": "string",
   874                          "description": "The name of the object",
   875                          "name": "name",
   876                          "in": "query"
   877                      },
   878                      {
   879                          "type": "string",
   880                          "description": "The namespace of the object",
   881                          "name": "namespace",
   882                          "in": "query"
   883                      },
   884                      {
   885                          "type": "string",
   886                          "description": "The UID of the object",
   887                          "name": "object_id",
   888                          "in": "query"
   889                      },
   890                      {
   891                          "enum": [
   892                              "PodChaos",
   893                              "IOChaos",
   894                              "NetworkChaos",
   895                              "TimeChaos",
   896                              "KernelChaos",
   897                              "StressChaos",
   898                              "AWSChaos",
   899                              "GCPChaos",
   900                              "DNSChaos",
   901                              "Schedule"
   902                          ],
   903                          "type": "string",
   904                          "description": "kind",
   905                          "name": "kind",
   906                          "in": "query"
   907                      },
   908                      {
   909                          "type": "number",
   910                          "description": "The max length of events list",
   911                          "name": "limit",
   912                          "in": "query"
   913                      }
   914                  ],
   915                  "responses": {
   916                      "200": {
   917                          "description": "OK",
   918                          "schema": {
   919                              "type": "array",
   920                              "items": {
   921                                  "$ref": "#/definitions/core.Event"
   922                              }
   923                          }
   924                      },
   925                      "500": {
   926                          "description": "Internal Server Error",
   927                          "schema": {
   928                              "$ref": "#/definitions/utils.APIError"
   929                          }
   930                      }
   931                  }
   932              }
   933          },
   934          "/events/workflow/{uid}": {
   935              "get": {
   936                  "description": "list all events for Workflow and related WorkflowNode.",
   937                  "produces": [
   938                      "application/json"
   939                  ],
   940                  "tags": [
   941                      "events"
   942                  ],
   943                  "summary": "cascadeFetchEventsForWorkflow list all events for Workflow and related WorkflowNode.",
   944                  "parameters": [
   945                      {
   946                          "type": "string",
   947                          "description": "The UID of the Workflow",
   948                          "name": "uid",
   949                          "in": "path",
   950                          "required": true
   951                      },
   952                      {
   953                          "type": "string",
   954                          "description": "The namespace of the object",
   955                          "name": "namespace",
   956                          "in": "query"
   957                      },
   958                      {
   959                          "type": "number",
   960                          "description": "The max length of events list",
   961                          "name": "limit",
   962                          "in": "query"
   963                      }
   964                  ],
   965                  "responses": {
   966                      "200": {
   967                          "description": "OK",
   968                          "schema": {
   969                              "type": "array",
   970                              "items": {
   971                                  "$ref": "#/definitions/core.Event"
   972                              }
   973                          }
   974                      },
   975                      "500": {
   976                          "description": "Internal Server Error",
   977                          "schema": {
   978                              "$ref": "#/definitions/utils.APIError"
   979                          }
   980                      }
   981                  }
   982              }
   983          },
   984          "/events/{id}": {
   985              "get": {
   986                  "description": "Get the event from db by ID.",
   987                  "produces": [
   988                      "application/json"
   989                  ],
   990                  "tags": [
   991                      "events"
   992                  ],
   993                  "summary": "Get an event.",
   994                  "parameters": [
   995                      {
   996                          "type": "integer",
   997                          "description": "The event ID",
   998                          "name": "id",
   999                          "in": "path",
  1000                          "required": true
  1001                      }
  1002                  ],
  1003                  "responses": {
  1004                      "200": {
  1005                          "description": "OK",
  1006                          "schema": {
  1007                              "$ref": "#/definitions/core.Event"
  1008                          }
  1009                      },
  1010                      "400": {
  1011                          "description": "Bad Request",
  1012                          "schema": {
  1013                              "$ref": "#/definitions/utils.APIError"
  1014                          }
  1015                      },
  1016                      "404": {
  1017                          "description": "Not Found",
  1018                          "schema": {
  1019                              "$ref": "#/definitions/utils.APIError"
  1020                          }
  1021                      },
  1022                      "500": {
  1023                          "description": "Internal Server Error",
  1024                          "schema": {
  1025                              "$ref": "#/definitions/utils.APIError"
  1026                          }
  1027                      }
  1028                  }
  1029              }
  1030          },
  1031          "/experiments": {
  1032              "get": {
  1033                  "description": "Get chaos experiments from k8s clusters in real time.",
  1034                  "produces": [
  1035                      "application/json"
  1036                  ],
  1037                  "tags": [
  1038                      "experiments"
  1039                  ],
  1040                  "summary": "List chaos experiments.",
  1041                  "parameters": [
  1042                      {
  1043                          "type": "string",
  1044                          "description": "filter exps by namespace",
  1045                          "name": "namespace",
  1046                          "in": "query"
  1047                      },
  1048                      {
  1049                          "type": "string",
  1050                          "description": "filter exps by name",
  1051                          "name": "name",
  1052                          "in": "query"
  1053                      },
  1054                      {
  1055                          "enum": [
  1056                              "PodChaos",
  1057                              "NetworkChaos",
  1058                              "IOChaos",
  1059                              "StressChaos",
  1060                              "KernelChaos",
  1061                              "TimeChaos",
  1062                              "DNSChaos",
  1063                              "AWSChaos",
  1064                              "GCPChaos",
  1065                              "JVMChaos",
  1066                              "HTTPChaos"
  1067                          ],
  1068                          "type": "string",
  1069                          "description": "filter exps by kind",
  1070                          "name": "kind",
  1071                          "in": "query"
  1072                      },
  1073                      {
  1074                          "enum": [
  1075                              "Injecting",
  1076                              "Running",
  1077                              "Finished",
  1078                              "Paused"
  1079                          ],
  1080                          "type": "string",
  1081                          "description": "filter exps by status",
  1082                          "name": "status",
  1083                          "in": "query"
  1084                      }
  1085                  ],
  1086                  "responses": {
  1087                      "200": {
  1088                          "description": "OK",
  1089                          "schema": {
  1090                              "type": "array",
  1091                              "items": {
  1092                                  "$ref": "#/definitions/types.Experiment"
  1093                              }
  1094                          }
  1095                      },
  1096                      "400": {
  1097                          "description": "Bad Request",
  1098                          "schema": {
  1099                              "$ref": "#/definitions/utils.APIError"
  1100                          }
  1101                      },
  1102                      "500": {
  1103                          "description": "Internal Server Error",
  1104                          "schema": {
  1105                              "$ref": "#/definitions/utils.APIError"
  1106                          }
  1107                      }
  1108                  }
  1109              },
  1110              "post": {
  1111                  "description": "Pass a JSON object to create a new chaos experiment. The schema for JSON is the same as the YAML schema for the Kubernetes object.",
  1112                  "consumes": [
  1113                      "application/json"
  1114                  ],
  1115                  "produces": [
  1116                      "application/json"
  1117                  ],
  1118                  "tags": [
  1119                      "experiments"
  1120                  ],
  1121                  "summary": "Create a new chaos experiment.",
  1122                  "parameters": [
  1123                      {
  1124                          "description": "the chaos definition",
  1125                          "name": "chaos",
  1126                          "in": "body",
  1127                          "required": true,
  1128                          "schema": {
  1129                              "type": "object",
  1130                              "additionalProperties": true
  1131                          }
  1132                      }
  1133                  ],
  1134                  "responses": {
  1135                      "200": {
  1136                          "description": "OK",
  1137                          "schema": {
  1138                              "type": "object",
  1139                              "additionalProperties": true
  1140                          }
  1141                      },
  1142                      "400": {
  1143                          "description": "Bad Request",
  1144                          "schema": {
  1145                              "$ref": "#/definitions/utils.APIError"
  1146                          }
  1147                      },
  1148                      "500": {
  1149                          "description": "Internal Server Error",
  1150                          "schema": {
  1151                              "$ref": "#/definitions/utils.APIError"
  1152                          }
  1153                      }
  1154                  }
  1155              },
  1156              "delete": {
  1157                  "description": "Batch delete chaos experiments by uids.",
  1158                  "produces": [
  1159                      "application/json"
  1160                  ],
  1161                  "tags": [
  1162                      "experiments"
  1163                  ],
  1164                  "summary": "Batch delete chaos experiments.",
  1165                  "parameters": [
  1166                      {
  1167                          "type": "string",
  1168                          "description": "the experiment uids, split with comma. Example: ?uids=uid1,uid2",
  1169                          "name": "uids",
  1170                          "in": "query",
  1171                          "required": true
  1172                      },
  1173                      {
  1174                          "enum": [
  1175                              "true",
  1176                              "false"
  1177                          ],
  1178                          "type": "string",
  1179                          "description": "force",
  1180                          "name": "force",
  1181                          "in": "query"
  1182                      }
  1183                  ],
  1184                  "responses": {
  1185                      "200": {
  1186                          "description": "OK",
  1187                          "schema": {
  1188                              "$ref": "#/definitions/utils.Response"
  1189                          }
  1190                      },
  1191                      "400": {
  1192                          "description": "Bad Request",
  1193                          "schema": {
  1194                              "$ref": "#/definitions/utils.APIError"
  1195                          }
  1196                      },
  1197                      "404": {
  1198                          "description": "Not Found",
  1199                          "schema": {
  1200                              "$ref": "#/definitions/utils.APIError"
  1201                          }
  1202                      },
  1203                      "500": {
  1204                          "description": "Internal Server Error",
  1205                          "schema": {
  1206                              "$ref": "#/definitions/utils.APIError"
  1207                          }
  1208                      }
  1209                  }
  1210              }
  1211          },
  1212          "/experiments/pause/{uid}": {
  1213              "put": {
  1214                  "description": "Pause a chaos experiment.",
  1215                  "produces": [
  1216                      "application/json"
  1217                  ],
  1218                  "tags": [
  1219                      "experiments"
  1220                  ],
  1221                  "summary": "Pause a chaos experiment.",
  1222                  "parameters": [
  1223                      {
  1224                          "type": "string",
  1225                          "description": "the experiment uid",
  1226                          "name": "uid",
  1227                          "in": "path",
  1228                          "required": true
  1229                      }
  1230                  ],
  1231                  "responses": {
  1232                      "200": {
  1233                          "description": "OK",
  1234                          "schema": {
  1235                              "$ref": "#/definitions/utils.Response"
  1236                          }
  1237                      },
  1238                      "400": {
  1239                          "description": "Bad Request",
  1240                          "schema": {
  1241                              "$ref": "#/definitions/utils.APIError"
  1242                          }
  1243                      },
  1244                      "404": {
  1245                          "description": "Not Found",
  1246                          "schema": {
  1247                              "$ref": "#/definitions/utils.APIError"
  1248                          }
  1249                      },
  1250                      "500": {
  1251                          "description": "Internal Server Error",
  1252                          "schema": {
  1253                              "$ref": "#/definitions/utils.APIError"
  1254                          }
  1255                      }
  1256                  }
  1257              }
  1258          },
  1259          "/experiments/start/{uid}": {
  1260              "put": {
  1261                  "description": "Start a chaos experiment.",
  1262                  "produces": [
  1263                      "application/json"
  1264                  ],
  1265                  "tags": [
  1266                      "experiments"
  1267                  ],
  1268                  "summary": "Start a chaos experiment.",
  1269                  "parameters": [
  1270                      {
  1271                          "type": "string",
  1272                          "description": "the experiment uid",
  1273                          "name": "uid",
  1274                          "in": "path",
  1275                          "required": true
  1276                      }
  1277                  ],
  1278                  "responses": {
  1279                      "200": {
  1280                          "description": "OK",
  1281                          "schema": {
  1282                              "$ref": "#/definitions/utils.Response"
  1283                          }
  1284                      },
  1285                      "400": {
  1286                          "description": "Bad Request",
  1287                          "schema": {
  1288                              "$ref": "#/definitions/utils.APIError"
  1289                          }
  1290                      },
  1291                      "404": {
  1292                          "description": "Not Found",
  1293                          "schema": {
  1294                              "$ref": "#/definitions/utils.APIError"
  1295                          }
  1296                      },
  1297                      "500": {
  1298                          "description": "Internal Server Error",
  1299                          "schema": {
  1300                              "$ref": "#/definitions/utils.APIError"
  1301                          }
  1302                      }
  1303                  }
  1304              }
  1305          },
  1306          "/experiments/state": {
  1307              "get": {
  1308                  "description": "Get the status of all experiments.",
  1309                  "produces": [
  1310                      "application/json"
  1311                  ],
  1312                  "tags": [
  1313                      "experiments"
  1314                  ],
  1315                  "summary": "Get the status of all experiments.",
  1316                  "parameters": [
  1317                      {
  1318                          "type": "string",
  1319                          "description": "namespace",
  1320                          "name": "namespace",
  1321                          "in": "query"
  1322                      }
  1323                  ],
  1324                  "responses": {
  1325                      "200": {
  1326                          "description": "OK",
  1327                          "schema": {
  1328                              "$ref": "#/definitions/status.AllChaosStatus"
  1329                          }
  1330                      },
  1331                      "400": {
  1332                          "description": "Bad Request",
  1333                          "schema": {
  1334                              "$ref": "#/definitions/utils.APIError"
  1335                          }
  1336                      },
  1337                      "500": {
  1338                          "description": "Internal Server Error",
  1339                          "schema": {
  1340                              "$ref": "#/definitions/utils.APIError"
  1341                          }
  1342                      }
  1343                  }
  1344              }
  1345          },
  1346          "/experiments/{uid}": {
  1347              "get": {
  1348                  "description": "Get the chaos experiment's detail by uid.",
  1349                  "produces": [
  1350                      "application/json"
  1351                  ],
  1352                  "tags": [
  1353                      "experiments"
  1354                  ],
  1355                  "summary": "Get a chaos experiment.",
  1356                  "parameters": [
  1357                      {
  1358                          "type": "string",
  1359                          "description": "the experiment uid",
  1360                          "name": "uid",
  1361                          "in": "path",
  1362                          "required": true
  1363                      }
  1364                  ],
  1365                  "responses": {
  1366                      "200": {
  1367                          "description": "OK",
  1368                          "schema": {
  1369                              "$ref": "#/definitions/types.ExperimentDetail"
  1370                          }
  1371                      },
  1372                      "400": {
  1373                          "description": "Bad Request",
  1374                          "schema": {
  1375                              "$ref": "#/definitions/utils.APIError"
  1376                          }
  1377                      },
  1378                      "404": {
  1379                          "description": "Not Found",
  1380                          "schema": {
  1381                              "$ref": "#/definitions/utils.APIError"
  1382                          }
  1383                      },
  1384                      "500": {
  1385                          "description": "Internal Server Error",
  1386                          "schema": {
  1387                              "$ref": "#/definitions/utils.APIError"
  1388                          }
  1389                      }
  1390                  }
  1391              },
  1392              "delete": {
  1393                  "description": "Delete the chaos experiment by uid.",
  1394                  "produces": [
  1395                      "application/json"
  1396                  ],
  1397                  "tags": [
  1398                      "experiments"
  1399                  ],
  1400                  "summary": "Delete a chaos experiment.",
  1401                  "parameters": [
  1402                      {
  1403                          "type": "string",
  1404                          "description": "the experiment uid",
  1405                          "name": "uid",
  1406                          "in": "path",
  1407                          "required": true
  1408                      },
  1409                      {
  1410                          "enum": [
  1411                              "true",
  1412                              "false"
  1413                          ],
  1414                          "type": "string",
  1415                          "description": "force",
  1416                          "name": "force",
  1417                          "in": "query"
  1418                      }
  1419                  ],
  1420                  "responses": {
  1421                      "200": {
  1422                          "description": "OK",
  1423                          "schema": {
  1424                              "$ref": "#/definitions/utils.Response"
  1425                          }
  1426                      },
  1427                      "400": {
  1428                          "description": "Bad Request",
  1429                          "schema": {
  1430                              "$ref": "#/definitions/utils.APIError"
  1431                          }
  1432                      },
  1433                      "404": {
  1434                          "description": "Not Found",
  1435                          "schema": {
  1436                              "$ref": "#/definitions/utils.APIError"
  1437                          }
  1438                      },
  1439                      "500": {
  1440                          "description": "Internal Server Error",
  1441                          "schema": {
  1442                              "$ref": "#/definitions/utils.APIError"
  1443                          }
  1444                      }
  1445                  }
  1446              }
  1447          },
  1448          "/schedules": {
  1449              "get": {
  1450                  "description": "Get chaos schedules from k8s cluster in real time.",
  1451                  "produces": [
  1452                      "application/json"
  1453                  ],
  1454                  "tags": [
  1455                      "schedules"
  1456                  ],
  1457                  "summary": "List chaos schedules.",
  1458                  "parameters": [
  1459                      {
  1460                          "type": "string",
  1461                          "description": "filter schedules by namespace",
  1462                          "name": "namespace",
  1463                          "in": "query"
  1464                      },
  1465                      {
  1466                          "type": "string",
  1467                          "description": "filter schedules by name",
  1468                          "name": "name",
  1469                          "in": "query"
  1470                      }
  1471                  ],
  1472                  "responses": {
  1473                      "200": {
  1474                          "description": "OK",
  1475                          "schema": {
  1476                              "type": "array",
  1477                              "items": {
  1478                                  "$ref": "#/definitions/types.Schedule"
  1479                              }
  1480                          }
  1481                      },
  1482                      "400": {
  1483                          "description": "Bad Request",
  1484                          "schema": {
  1485                              "$ref": "#/definitions/utils.APIError"
  1486                          }
  1487                      },
  1488                      "500": {
  1489                          "description": "Internal Server Error",
  1490                          "schema": {
  1491                              "$ref": "#/definitions/utils.APIError"
  1492                          }
  1493                      }
  1494                  }
  1495              },
  1496              "post": {
  1497                  "description": "Pass a JSON object to create a new schedule. The schema for JSON is the same as the YAML schema for the Kubernetes object.",
  1498                  "consumes": [
  1499                      "application/json"
  1500                  ],
  1501                  "produces": [
  1502                      "application/json"
  1503                  ],
  1504                  "tags": [
  1505                      "schedules"
  1506                  ],
  1507                  "summary": "Create a new schedule.",
  1508                  "parameters": [
  1509                      {
  1510                          "description": "the schedule definition",
  1511                          "name": "schedule",
  1512                          "in": "body",
  1513                          "required": true,
  1514                          "schema": {
  1515                              "$ref": "#/definitions/v1alpha1.Schedule"
  1516                          }
  1517                      }
  1518                  ],
  1519                  "responses": {
  1520                      "200": {
  1521                          "description": "OK",
  1522                          "schema": {
  1523                              "$ref": "#/definitions/v1alpha1.Schedule"
  1524                          }
  1525                      },
  1526                      "400": {
  1527                          "description": "Bad Request",
  1528                          "schema": {
  1529                              "$ref": "#/definitions/utils.APIError"
  1530                          }
  1531                      },
  1532                      "500": {
  1533                          "description": "Internal Server Error",
  1534                          "schema": {
  1535                              "$ref": "#/definitions/utils.APIError"
  1536                          }
  1537                      }
  1538                  }
  1539              },
  1540              "delete": {
  1541                  "description": "Batch delete schedules by uids.",
  1542                  "produces": [
  1543                      "application/json"
  1544                  ],
  1545                  "tags": [
  1546                      "schedules"
  1547                  ],
  1548                  "summary": "Batch delete schedules.",
  1549                  "parameters": [
  1550                      {
  1551                          "type": "string",
  1552                          "description": "the schedule uids, split with comma. Example: ?uids=uid1,uid2",
  1553                          "name": "uids",
  1554                          "in": "query",
  1555                          "required": true
  1556                      }
  1557                  ],
  1558                  "responses": {
  1559                      "200": {
  1560                          "description": "OK",
  1561                          "schema": {
  1562                              "$ref": "#/definitions/utils.Response"
  1563                          }
  1564                      },
  1565                      "400": {
  1566                          "description": "Bad Request",
  1567                          "schema": {
  1568                              "$ref": "#/definitions/utils.APIError"
  1569                          }
  1570                      },
  1571                      "404": {
  1572                          "description": "Not Found",
  1573                          "schema": {
  1574                              "$ref": "#/definitions/utils.APIError"
  1575                          }
  1576                      },
  1577                      "500": {
  1578                          "description": "Internal Server Error",
  1579                          "schema": {
  1580                              "$ref": "#/definitions/utils.APIError"
  1581                          }
  1582                      }
  1583                  }
  1584              }
  1585          },
  1586          "/schedules/pause/{uid}": {
  1587              "put": {
  1588                  "description": "Pause a schedule.",
  1589                  "produces": [
  1590                      "application/json"
  1591                  ],
  1592                  "tags": [
  1593                      "schedules"
  1594                  ],
  1595                  "summary": "Pause a schedule.",
  1596                  "parameters": [
  1597                      {
  1598                          "type": "string",
  1599                          "description": "the schedule uid",
  1600                          "name": "uid",
  1601                          "in": "path",
  1602                          "required": true
  1603                      }
  1604                  ],
  1605                  "responses": {
  1606                      "200": {
  1607                          "description": "OK",
  1608                          "schema": {
  1609                              "$ref": "#/definitions/utils.Response"
  1610                          }
  1611                      },
  1612                      "400": {
  1613                          "description": "Bad Request",
  1614                          "schema": {
  1615                              "$ref": "#/definitions/utils.APIError"
  1616                          }
  1617                      },
  1618                      "404": {
  1619                          "description": "Not Found",
  1620                          "schema": {
  1621                              "$ref": "#/definitions/utils.APIError"
  1622                          }
  1623                      },
  1624                      "500": {
  1625                          "description": "Internal Server Error",
  1626                          "schema": {
  1627                              "$ref": "#/definitions/utils.APIError"
  1628                          }
  1629                      }
  1630                  }
  1631              }
  1632          },
  1633          "/schedules/start/{uid}": {
  1634              "put": {
  1635                  "description": "Start a schedule.",
  1636                  "produces": [
  1637                      "application/json"
  1638                  ],
  1639                  "tags": [
  1640                      "schedules"
  1641                  ],
  1642                  "summary": "Start a schedule.",
  1643                  "parameters": [
  1644                      {
  1645                          "type": "string",
  1646                          "description": "the schedule uid",
  1647                          "name": "uid",
  1648                          "in": "path",
  1649                          "required": true
  1650                      }
  1651                  ],
  1652                  "responses": {
  1653                      "200": {
  1654                          "description": "OK",
  1655                          "schema": {
  1656                              "$ref": "#/definitions/utils.Response"
  1657                          }
  1658                      },
  1659                      "400": {
  1660                          "description": "Bad Request",
  1661                          "schema": {
  1662                              "$ref": "#/definitions/utils.APIError"
  1663                          }
  1664                      },
  1665                      "404": {
  1666                          "description": "Not Found",
  1667                          "schema": {
  1668                              "$ref": "#/definitions/utils.APIError"
  1669                          }
  1670                      },
  1671                      "500": {
  1672                          "description": "Internal Server Error",
  1673                          "schema": {
  1674                              "$ref": "#/definitions/utils.APIError"
  1675                          }
  1676                      }
  1677                  }
  1678              }
  1679          },
  1680          "/schedules/{uid}": {
  1681              "get": {
  1682                  "description": "Get the schedule's detail by uid.",
  1683                  "produces": [
  1684                      "application/json"
  1685                  ],
  1686                  "tags": [
  1687                      "schedules"
  1688                  ],
  1689                  "summary": "Get a schedule.",
  1690                  "parameters": [
  1691                      {
  1692                          "type": "string",
  1693                          "description": "the schedule uid",
  1694                          "name": "uid",
  1695                          "in": "path",
  1696                          "required": true
  1697                      }
  1698                  ],
  1699                  "responses": {
  1700                      "200": {
  1701                          "description": "OK",
  1702                          "schema": {
  1703                              "$ref": "#/definitions/types.ScheduleDetail"
  1704                          }
  1705                      },
  1706                      "400": {
  1707                          "description": "Bad Request",
  1708                          "schema": {
  1709                              "$ref": "#/definitions/utils.APIError"
  1710                          }
  1711                      },
  1712                      "404": {
  1713                          "description": "Not Found",
  1714                          "schema": {
  1715                              "$ref": "#/definitions/utils.APIError"
  1716                          }
  1717                      },
  1718                      "500": {
  1719                          "description": "Internal Server Error",
  1720                          "schema": {
  1721                              "$ref": "#/definitions/utils.APIError"
  1722                          }
  1723                      }
  1724                  }
  1725              },
  1726              "delete": {
  1727                  "description": "Delete the schedule by uid.",
  1728                  "produces": [
  1729                      "application/json"
  1730                  ],
  1731                  "tags": [
  1732                      "schedules"
  1733                  ],
  1734                  "summary": "Delete a schedule.",
  1735                  "parameters": [
  1736                      {
  1737                          "type": "string",
  1738                          "description": "the schedule uid",
  1739                          "name": "uid",
  1740                          "in": "path",
  1741                          "required": true
  1742                      }
  1743                  ],
  1744                  "responses": {
  1745                      "200": {
  1746                          "description": "OK",
  1747                          "schema": {
  1748                              "$ref": "#/definitions/utils.Response"
  1749                          }
  1750                      },
  1751                      "400": {
  1752                          "description": "Bad Request",
  1753                          "schema": {
  1754                              "$ref": "#/definitions/utils.APIError"
  1755                          }
  1756                      },
  1757                      "404": {
  1758                          "description": "Not Found",
  1759                          "schema": {
  1760                              "$ref": "#/definitions/utils.APIError"
  1761                          }
  1762                      },
  1763                      "500": {
  1764                          "description": "Internal Server Error",
  1765                          "schema": {
  1766                              "$ref": "#/definitions/utils.APIError"
  1767                          }
  1768                      }
  1769                  }
  1770              }
  1771          },
  1772          "/templates/statuschecks": {
  1773              "get": {
  1774                  "description": "Get status check templates from k8s cluster in real time.",
  1775                  "produces": [
  1776                      "application/json"
  1777                  ],
  1778                  "tags": [
  1779                      "template"
  1780                  ],
  1781                  "summary": "List status check templates.",
  1782                  "parameters": [
  1783                      {
  1784                          "type": "string",
  1785                          "description": "filter status check templates by namespace",
  1786                          "name": "namespace",
  1787                          "in": "query"
  1788                      },
  1789                      {
  1790                          "type": "string",
  1791                          "description": "filter status check templates by name",
  1792                          "name": "name",
  1793                          "in": "query"
  1794                      }
  1795                  ],
  1796                  "responses": {
  1797                      "200": {
  1798                          "description": "OK",
  1799                          "schema": {
  1800                              "type": "array",
  1801                              "items": {
  1802                                  "$ref": "#/definitions/types.StatusCheckTemplateBase"
  1803                              }
  1804                          }
  1805                      },
  1806                      "400": {
  1807                          "description": "Bad Request",
  1808                          "schema": {
  1809                              "$ref": "#/definitions/utils.APIError"
  1810                          }
  1811                      },
  1812                      "500": {
  1813                          "description": "Internal Server Error",
  1814                          "schema": {
  1815                              "$ref": "#/definitions/utils.APIError"
  1816                          }
  1817                      }
  1818                  }
  1819              },
  1820              "post": {
  1821                  "description": "Pass a JSON object to create a new status check template.",
  1822                  "consumes": [
  1823                      "application/json"
  1824                  ],
  1825                  "produces": [
  1826                      "application/json"
  1827                  ],
  1828                  "tags": [
  1829                      "templates"
  1830                  ],
  1831                  "summary": "Create a new status check template.",
  1832                  "parameters": [
  1833                      {
  1834                          "description": "the status check definition",
  1835                          "name": "statuscheck",
  1836                          "in": "body",
  1837                          "required": true,
  1838                          "schema": {
  1839                              "$ref": "#/definitions/types.StatusCheckTemplate"
  1840                          }
  1841                      }
  1842                  ],
  1843                  "responses": {
  1844                      "200": {
  1845                          "description": "OK",
  1846                          "schema": {
  1847                              "$ref": "#/definitions/types.StatusCheckTemplate"
  1848                          }
  1849                      },
  1850                      "400": {
  1851                          "description": "Bad Request",
  1852                          "schema": {
  1853                              "$ref": "#/definitions/utils.APIError"
  1854                          }
  1855                      },
  1856                      "500": {
  1857                          "description": "Internal Server Error",
  1858                          "schema": {
  1859                              "$ref": "#/definitions/utils.APIError"
  1860                          }
  1861                      }
  1862                  }
  1863              }
  1864          },
  1865          "/templates/statuschecks/statuscheck": {
  1866              "get": {
  1867                  "description": "Get the status check template's detail by namespaced name.",
  1868                  "produces": [
  1869                      "application/json"
  1870                  ],
  1871                  "tags": [
  1872                      "templates"
  1873                  ],
  1874                  "summary": "Get a status check template.",
  1875                  "parameters": [
  1876                      {
  1877                          "type": "string",
  1878                          "description": "the namespace of status check templates",
  1879                          "name": "namespace",
  1880                          "in": "query",
  1881                          "required": true
  1882                      },
  1883                      {
  1884                          "type": "string",
  1885                          "description": "the name of status check templates",
  1886                          "name": "name",
  1887                          "in": "query",
  1888                          "required": true
  1889                      }
  1890                  ],
  1891                  "responses": {
  1892                      "200": {
  1893                          "description": "OK",
  1894                          "schema": {
  1895                              "$ref": "#/definitions/types.StatusCheckTemplateDetail"
  1896                          }
  1897                      },
  1898                      "400": {
  1899                          "description": "Bad Request",
  1900                          "schema": {
  1901                              "$ref": "#/definitions/utils.APIError"
  1902                          }
  1903                      },
  1904                      "404": {
  1905                          "description": "Not Found",
  1906                          "schema": {
  1907                              "$ref": "#/definitions/utils.APIError"
  1908                          }
  1909                      },
  1910                      "500": {
  1911                          "description": "Internal Server Error",
  1912                          "schema": {
  1913                              "$ref": "#/definitions/utils.APIError"
  1914                          }
  1915                      }
  1916                  }
  1917              },
  1918              "put": {
  1919                  "description": "Update a status check template by namespaced name.",
  1920                  "produces": [
  1921                      "application/json"
  1922                  ],
  1923                  "tags": [
  1924                      "templates"
  1925                  ],
  1926                  "summary": "Update a status check template.",
  1927                  "parameters": [
  1928                      {
  1929                          "description": "Request body",
  1930                          "name": "request",
  1931                          "in": "body",
  1932                          "required": true,
  1933                          "schema": {
  1934                              "$ref": "#/definitions/types.StatusCheckTemplate"
  1935                          }
  1936                      }
  1937                  ],
  1938                  "responses": {
  1939                      "200": {
  1940                          "description": "OK",
  1941                          "schema": {
  1942                              "$ref": "#/definitions/types.StatusCheckTemplate"
  1943                          }
  1944                      },
  1945                      "400": {
  1946                          "description": "Bad Request",
  1947                          "schema": {
  1948                              "$ref": "#/definitions/utils.APIError"
  1949                          }
  1950                      },
  1951                      "500": {
  1952                          "description": "Internal Server Error",
  1953                          "schema": {
  1954                              "$ref": "#/definitions/utils.APIError"
  1955                          }
  1956                      }
  1957                  }
  1958              },
  1959              "delete": {
  1960                  "description": "Delete the status check template by namespaced name.",
  1961                  "produces": [
  1962                      "application/json"
  1963                  ],
  1964                  "tags": [
  1965                      "templates"
  1966                  ],
  1967                  "summary": "Delete a status check template.",
  1968                  "parameters": [
  1969                      {
  1970                          "type": "string",
  1971                          "description": "the namespace of status check templates",
  1972                          "name": "namespace",
  1973                          "in": "query",
  1974                          "required": true
  1975                      },
  1976                      {
  1977                          "type": "string",
  1978                          "description": "the name of status check templates",
  1979                          "name": "name",
  1980                          "in": "query",
  1981                          "required": true
  1982                      }
  1983                  ],
  1984                  "responses": {
  1985                      "200": {
  1986                          "description": "OK",
  1987                          "schema": {
  1988                              "$ref": "#/definitions/utils.Response"
  1989                          }
  1990                      },
  1991                      "400": {
  1992                          "description": "Bad Request",
  1993                          "schema": {
  1994                              "$ref": "#/definitions/utils.APIError"
  1995                          }
  1996                      },
  1997                      "404": {
  1998                          "description": "Not Found",
  1999                          "schema": {
  2000                              "$ref": "#/definitions/utils.APIError"
  2001                          }
  2002                      },
  2003                      "500": {
  2004                          "description": "Internal Server Error",
  2005                          "schema": {
  2006                              "$ref": "#/definitions/utils.APIError"
  2007                          }
  2008                      }
  2009                  }
  2010              }
  2011          },
  2012          "/workflows": {
  2013              "get": {
  2014                  "description": "List workflows from Kubernetes cluster.",
  2015                  "produces": [
  2016                      "application/json"
  2017                  ],
  2018                  "tags": [
  2019                      "workflows"
  2020                  ],
  2021                  "summary": "List workflows from Kubernetes cluster.",
  2022                  "parameters": [
  2023                      {
  2024                          "type": "string",
  2025                          "description": "namespace, given empty string means list from all namespace",
  2026                          "name": "namespace",
  2027                          "in": "query"
  2028                      },
  2029                      {
  2030                          "enum": [
  2031                              "Initializing",
  2032                              "Running",
  2033                              "Errored",
  2034                              "Finished"
  2035                          ],
  2036                          "type": "string",
  2037                          "description": "status",
  2038                          "name": "status",
  2039                          "in": "query"
  2040                      }
  2041                  ],
  2042                  "responses": {
  2043                      "200": {
  2044                          "description": "OK",
  2045                          "schema": {
  2046                              "type": "array",
  2047                              "items": {
  2048                                  "$ref": "#/definitions/core.WorkflowMeta"
  2049                              }
  2050                          }
  2051                      },
  2052                      "500": {
  2053                          "description": "Internal Server Error",
  2054                          "schema": {
  2055                              "$ref": "#/definitions/utils.APIError"
  2056                          }
  2057                      }
  2058                  }
  2059              },
  2060              "post": {
  2061                  "description": "Create a new workflow.",
  2062                  "produces": [
  2063                      "application/json"
  2064                  ],
  2065                  "tags": [
  2066                      "workflows"
  2067                  ],
  2068                  "summary": "Create a new workflow.",
  2069                  "parameters": [
  2070                      {
  2071                          "description": "Request body",
  2072                          "name": "request",
  2073                          "in": "body",
  2074                          "required": true,
  2075                          "schema": {
  2076                              "$ref": "#/definitions/v1alpha1.Workflow"
  2077                          }
  2078                      }
  2079                  ],
  2080                  "responses": {
  2081                      "200": {
  2082                          "description": "OK",
  2083                          "schema": {
  2084                              "$ref": "#/definitions/core.WorkflowDetail"
  2085                          }
  2086                      },
  2087                      "400": {
  2088                          "description": "Bad Request",
  2089                          "schema": {
  2090                              "$ref": "#/definitions/utils.APIError"
  2091                          }
  2092                      },
  2093                      "500": {
  2094                          "description": "Internal Server Error",
  2095                          "schema": {
  2096                              "$ref": "#/definitions/utils.APIError"
  2097                          }
  2098                      }
  2099                  }
  2100              }
  2101          },
  2102          "/workflows/parse-task/http": {
  2103              "post": {
  2104                  "description": "Parse the rendered task back to the original request",
  2105                  "produces": [
  2106                      "application/json"
  2107                  ],
  2108                  "tags": [
  2109                      "workflows"
  2110                  ],
  2111                  "summary": "Parse the rendered task back to the original request",
  2112                  "parameters": [
  2113                      {
  2114                          "description": "Rendered Task",
  2115                          "name": "request",
  2116                          "in": "body",
  2117                          "required": true,
  2118                          "schema": {
  2119                              "$ref": "#/definitions/v1alpha1.Template"
  2120                          }
  2121                      }
  2122                  ],
  2123                  "responses": {
  2124                      "200": {
  2125                          "description": "OK",
  2126                          "schema": {
  2127                              "$ref": "#/definitions/curl.RequestForm"
  2128                          }
  2129                      },
  2130                      "400": {
  2131                          "description": "Bad Request",
  2132                          "schema": {
  2133                              "$ref": "#/definitions/utils.APIError"
  2134                          }
  2135                      },
  2136                      "500": {
  2137                          "description": "Internal Server Error",
  2138                          "schema": {
  2139                              "$ref": "#/definitions/utils.APIError"
  2140                          }
  2141                      }
  2142                  }
  2143              }
  2144          },
  2145          "/workflows/render-task/http": {
  2146              "post": {
  2147                  "description": "Render a task which sends HTTP request",
  2148                  "produces": [
  2149                      "application/json"
  2150                  ],
  2151                  "tags": [
  2152                      "workflows"
  2153                  ],
  2154                  "summary": "Render a task which sends HTTP request",
  2155                  "parameters": [
  2156                      {
  2157                          "description": "Origin HTTP Request",
  2158                          "name": "request",
  2159                          "in": "body",
  2160                          "required": true,
  2161                          "schema": {
  2162                              "$ref": "#/definitions/curl.RequestForm"
  2163                          }
  2164                      }
  2165                  ],
  2166                  "responses": {
  2167                      "200": {
  2168                          "description": "OK",
  2169                          "schema": {
  2170                              "$ref": "#/definitions/v1alpha1.Template"
  2171                          }
  2172                      },
  2173                      "400": {
  2174                          "description": "Bad Request",
  2175                          "schema": {
  2176                              "$ref": "#/definitions/utils.APIError"
  2177                          }
  2178                      },
  2179                      "500": {
  2180                          "description": "Internal Server Error",
  2181                          "schema": {
  2182                              "$ref": "#/definitions/utils.APIError"
  2183                          }
  2184                      }
  2185                  }
  2186              }
  2187          },
  2188          "/workflows/validate-task/http": {
  2189              "post": {
  2190                  "description": "Validate the given template is a valid rendered HTTP Task",
  2191                  "produces": [
  2192                      "application/json"
  2193                  ],
  2194                  "tags": [
  2195                      "workflows"
  2196                  ],
  2197                  "summary": "Validate the given template is a valid rendered HTTP Task",
  2198                  "parameters": [
  2199                      {
  2200                          "description": "Rendered Task",
  2201                          "name": "request",
  2202                          "in": "body",
  2203                          "required": true,
  2204                          "schema": {
  2205                              "$ref": "#/definitions/v1alpha1.Template"
  2206                          }
  2207                      }
  2208                  ],
  2209                  "responses": {
  2210                      "200": {
  2211                          "description": "OK",
  2212                          "schema": {
  2213                              "type": "boolean"
  2214                          }
  2215                      },
  2216                      "400": {
  2217                          "description": "Bad Request",
  2218                          "schema": {
  2219                              "$ref": "#/definitions/utils.APIError"
  2220                          }
  2221                      },
  2222                      "500": {
  2223                          "description": "Internal Server Error",
  2224                          "schema": {
  2225                              "$ref": "#/definitions/utils.APIError"
  2226                          }
  2227                      }
  2228                  }
  2229              }
  2230          },
  2231          "/workflows/{uid}": {
  2232              "get": {
  2233                  "description": "Get detailed information about the specified workflow. If that object is not existed in kubernetes, it will only return ths persisted data in the database.",
  2234                  "produces": [
  2235                      "application/json"
  2236                  ],
  2237                  "tags": [
  2238                      "workflows"
  2239                  ],
  2240                  "summary": "Get detailed information about the specified workflow.",
  2241                  "parameters": [
  2242                      {
  2243                          "type": "string",
  2244                          "description": "uid",
  2245                          "name": "uid",
  2246                          "in": "path",
  2247                          "required": true
  2248                      }
  2249                  ],
  2250                  "responses": {
  2251                      "200": {
  2252                          "description": "OK",
  2253                          "schema": {
  2254                              "$ref": "#/definitions/core.WorkflowDetail"
  2255                          }
  2256                      },
  2257                      "400": {
  2258                          "description": "Bad Request",
  2259                          "schema": {
  2260                              "$ref": "#/definitions/utils.APIError"
  2261                          }
  2262                      },
  2263                      "500": {
  2264                          "description": "Internal Server Error",
  2265                          "schema": {
  2266                              "$ref": "#/definitions/utils.APIError"
  2267                          }
  2268                      }
  2269                  }
  2270              },
  2271              "put": {
  2272                  "description": "Update a workflow.",
  2273                  "produces": [
  2274                      "application/json"
  2275                  ],
  2276                  "tags": [
  2277                      "workflows"
  2278                  ],
  2279                  "summary": "Update a workflow.",
  2280                  "parameters": [
  2281                      {
  2282                          "type": "string",
  2283                          "description": "uid",
  2284                          "name": "uid",
  2285                          "in": "path",
  2286                          "required": true
  2287                      },
  2288                      {
  2289                          "description": "Request body",
  2290                          "name": "request",
  2291                          "in": "body",
  2292                          "required": true,
  2293                          "schema": {
  2294                              "$ref": "#/definitions/v1alpha1.Workflow"
  2295                          }
  2296                      }
  2297                  ],
  2298                  "responses": {
  2299                      "200": {
  2300                          "description": "OK",
  2301                          "schema": {
  2302                              "$ref": "#/definitions/core.WorkflowDetail"
  2303                          }
  2304                      },
  2305                      "400": {
  2306                          "description": "Bad Request",
  2307                          "schema": {
  2308                              "$ref": "#/definitions/utils.APIError"
  2309                          }
  2310                      },
  2311                      "500": {
  2312                          "description": "Internal Server Error",
  2313                          "schema": {
  2314                              "$ref": "#/definitions/utils.APIError"
  2315                          }
  2316                      }
  2317                  }
  2318              },
  2319              "delete": {
  2320                  "description": "Delete the specified workflow.",
  2321                  "produces": [
  2322                      "application/json"
  2323                  ],
  2324                  "tags": [
  2325                      "workflows"
  2326                  ],
  2327                  "summary": "Delete the specified workflow.",
  2328                  "parameters": [
  2329                      {
  2330                          "type": "string",
  2331                          "description": "uid",
  2332                          "name": "uid",
  2333                          "in": "path",
  2334                          "required": true
  2335                      }
  2336                  ],
  2337                  "responses": {
  2338                      "200": {
  2339                          "description": "OK",
  2340                          "schema": {
  2341                              "$ref": "#/definitions/utils.Response"
  2342                          }
  2343                      },
  2344                      "400": {
  2345                          "description": "Bad Request",
  2346                          "schema": {
  2347                              "$ref": "#/definitions/utils.APIError"
  2348                          }
  2349                      },
  2350                      "404": {
  2351                          "description": "Not Found",
  2352                          "schema": {
  2353                              "$ref": "#/definitions/utils.APIError"
  2354                          }
  2355                      },
  2356                      "500": {
  2357                          "description": "Internal Server Error",
  2358                          "schema": {
  2359                              "$ref": "#/definitions/utils.APIError"
  2360                          }
  2361                      }
  2362                  }
  2363              }
  2364          }
  2365      },
  2366      "definitions": {
  2367          "config.ChaosDashboardConfig": {
  2368              "type": "object",
  2369              "properties": {
  2370                  "cluster_mode": {
  2371                      "description": "ClusterScoped means control Chaos Object in cluster level(all namespace).",
  2372                      "type": "boolean",
  2373                      "default": true
  2374                  },
  2375                  "dns_server_create": {
  2376                      "description": "After v2.5, the DNS server is created by default.",
  2377                      "type": "boolean",
  2378                      "default": true
  2379                  },
  2380                  "enableFilterNamespace": {
  2381                      "description": "EnableFilterNamespace will filter namespace with annotation. Only the pods/containers in namespace\nannotated with ` + "`" + `chaos-mesh.org/inject=enabled` + "`" + ` will be injected.",
  2382                      "type": "boolean",
  2383                      "default": false
  2384                  },
  2385                  "gcp_security_mode": {
  2386                      "description": "GcpSecurityMode will use the gcloud authentication to login to GKE user",
  2387                      "type": "boolean",
  2388                      "default": false
  2389                  },
  2390                  "listen_host": {
  2391                      "type": "string",
  2392                      "default": "0.0.0.0"
  2393                  },
  2394                  "listen_port": {
  2395                      "type": "integer",
  2396                      "default": 2333
  2397                  },
  2398                  "root_path": {
  2399                      "type": "string",
  2400                      "default": "http://localhost:2333"
  2401                  },
  2402                  "security_mode": {
  2403                      "description": "SecurityMode will use the token login by the user if set to true",
  2404                      "type": "boolean",
  2405                      "default": true
  2406                  },
  2407                  "target_namespace": {
  2408                      "description": "TargetNamespace is the target namespace to injecting chaos.\nIt only works with ClusterScoped is false.",
  2409                      "type": "string"
  2410                  },
  2411                  "version": {
  2412                      "type": "string"
  2413                  }
  2414              }
  2415          },
  2416          "core.ConditionalBranch": {
  2417              "type": "object",
  2418              "properties": {
  2419                  "expression": {
  2420                      "type": "string"
  2421                  },
  2422                  "name": {
  2423                      "type": "string"
  2424                  },
  2425                  "template": {
  2426                      "type": "string"
  2427                  }
  2428              }
  2429          },
  2430          "core.Event": {
  2431              "type": "object",
  2432              "properties": {
  2433                  "created_at": {
  2434                      "type": "string"
  2435                  },
  2436                  "id": {
  2437                      "type": "integer"
  2438                  },
  2439                  "kind": {
  2440                      "type": "string"
  2441                  },
  2442                  "message": {
  2443                      "type": "string"
  2444                  },
  2445                  "name": {
  2446                      "type": "string"
  2447                  },
  2448                  "namespace": {
  2449                      "type": "string"
  2450                  },
  2451                  "object_id": {
  2452                      "type": "string"
  2453                  },
  2454                  "reason": {
  2455                      "type": "string"
  2456                  },
  2457                  "type": {
  2458                      "type": "string"
  2459                  }
  2460              }
  2461          },
  2462          "core.KubeObjectDesc": {
  2463              "type": "object",
  2464              "properties": {
  2465                  "apiVersion": {
  2466                      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\n+optional",
  2467                      "type": "string"
  2468                  },
  2469                  "kind": {
  2470                      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n+optional",
  2471                      "type": "string"
  2472                  },
  2473                  "metadata": {
  2474                      "$ref": "#/definitions/core.KubeObjectMeta"
  2475                  },
  2476                  "spec": {}
  2477              }
  2478          },
  2479          "core.KubeObjectMeta": {
  2480              "type": "object",
  2481              "properties": {
  2482                  "annotations": {
  2483                      "type": "object",
  2484                      "additionalProperties": {
  2485                          "type": "string"
  2486                      }
  2487                  },
  2488                  "labels": {
  2489                      "type": "object",
  2490                      "additionalProperties": {
  2491                          "type": "string"
  2492                      }
  2493                  },
  2494                  "name": {
  2495                      "type": "string"
  2496                  },
  2497                  "namespace": {
  2498                      "type": "string"
  2499                  }
  2500              }
  2501          },
  2502          "core.Node": {
  2503              "type": "object",
  2504              "properties": {
  2505                  "conditional_branches": {
  2506                      "type": "array",
  2507                      "items": {
  2508                          "$ref": "#/definitions/core.ConditionalBranch"
  2509                      }
  2510                  },
  2511                  "name": {
  2512                      "type": "string"
  2513                  },
  2514                  "parallel": {
  2515                      "type": "array",
  2516                      "items": {
  2517                          "$ref": "#/definitions/core.NodeNameWithTemplate"
  2518                      }
  2519                  },
  2520                  "serial": {
  2521                      "type": "array",
  2522                      "items": {
  2523                          "$ref": "#/definitions/core.NodeNameWithTemplate"
  2524                      }
  2525                  },
  2526                  "state": {
  2527                      "type": "string"
  2528                  },
  2529                  "template": {
  2530                      "type": "string"
  2531                  },
  2532                  "type": {
  2533                      "type": "string"
  2534                  },
  2535                  "uid": {
  2536                      "type": "string"
  2537                  }
  2538              }
  2539          },
  2540          "core.NodeNameWithTemplate": {
  2541              "type": "object",
  2542              "properties": {
  2543                  "name": {
  2544                      "type": "string"
  2545                  },
  2546                  "template": {
  2547                      "type": "string"
  2548                  }
  2549              }
  2550          },
  2551          "core.Topology": {
  2552              "type": "object",
  2553              "properties": {
  2554                  "nodes": {
  2555                      "type": "array",
  2556                      "items": {
  2557                          "$ref": "#/definitions/core.Node"
  2558                      }
  2559                  }
  2560              }
  2561          },
  2562          "core.WorkflowDetail": {
  2563              "type": "object",
  2564              "properties": {
  2565                  "created_at": {
  2566                      "type": "string"
  2567                  },
  2568                  "end_time": {
  2569                      "description": "EndTime represents the time when the workflow completed all steps.",
  2570                      "type": "string"
  2571                  },
  2572                  "entry": {
  2573                      "description": "the entry node name",
  2574                      "type": "string"
  2575                  },
  2576                  "finish_time": {
  2577                      "description": "FinishTime represents the time when the workflow was deleted from Kubernetes.",
  2578                      "type": "string"
  2579                  },
  2580                  "id": {
  2581                      "type": "integer"
  2582                  },
  2583                  "kube_object": {
  2584                      "$ref": "#/definitions/core.KubeObjectDesc"
  2585                  },
  2586                  "name": {
  2587                      "type": "string"
  2588                  },
  2589                  "namespace": {
  2590                      "type": "string"
  2591                  },
  2592                  "status": {
  2593                      "type": "string"
  2594                  },
  2595                  "topology": {
  2596                      "$ref": "#/definitions/core.Topology"
  2597                  },
  2598                  "uid": {
  2599                      "type": "string"
  2600                  }
  2601              }
  2602          },
  2603          "core.WorkflowMeta": {
  2604              "type": "object",
  2605              "properties": {
  2606                  "created_at": {
  2607                      "type": "string"
  2608                  },
  2609                  "end_time": {
  2610                      "description": "EndTime represents the time when the workflow completed all steps.",
  2611                      "type": "string"
  2612                  },
  2613                  "entry": {
  2614                      "description": "the entry node name",
  2615                      "type": "string"
  2616                  },
  2617                  "finish_time": {
  2618                      "description": "FinishTime represents the time when the workflow was deleted from Kubernetes.",
  2619                      "type": "string"
  2620                  },
  2621                  "id": {
  2622                      "type": "integer"
  2623                  },
  2624                  "name": {
  2625                      "type": "string"
  2626                  },
  2627                  "namespace": {
  2628                      "type": "string"
  2629                  },
  2630                  "status": {
  2631                      "type": "string"
  2632                  },
  2633                  "uid": {
  2634                      "type": "string"
  2635                  }
  2636              }
  2637          },
  2638          "curl.Header": {
  2639              "type": "object",
  2640              "additionalProperties": {
  2641                  "type": "array",
  2642                  "items": {
  2643                      "type": "string"
  2644                  }
  2645              }
  2646          },
  2647          "curl.RequestForm": {
  2648              "type": "object",
  2649              "properties": {
  2650                  "body": {
  2651                      "type": "string"
  2652                  },
  2653                  "followLocation": {
  2654                      "type": "boolean"
  2655                  },
  2656                  "header": {
  2657                      "$ref": "#/definitions/curl.Header"
  2658                  },
  2659                  "jsonContent": {
  2660                      "type": "boolean"
  2661                  },
  2662                  "method": {
  2663                      "type": "string"
  2664                  },
  2665                  "name": {
  2666                      "type": "string"
  2667                  },
  2668                  "url": {
  2669                      "type": "string"
  2670                  }
  2671              }
  2672          },
  2673          "http.Header": {
  2674              "type": "object",
  2675              "additionalProperties": {
  2676                  "type": "array",
  2677                  "items": {
  2678                      "type": "string"
  2679                  }
  2680              }
  2681          },
  2682          "intstr.IntOrString": {
  2683              "type": "object",
  2684              "properties": {
  2685                  "intVal": {
  2686                      "type": "integer"
  2687                  },
  2688                  "strVal": {
  2689                      "type": "string"
  2690                  },
  2691                  "type": {
  2692                      "type": "integer"
  2693                  }
  2694              }
  2695          },
  2696          "resource.Quantity": {
  2697              "type": "object",
  2698              "properties": {
  2699                  "Format": {
  2700                      "type": "string"
  2701                  }
  2702              }
  2703          },
  2704          "status.AllChaosStatus": {
  2705              "type": "object",
  2706              "properties": {
  2707                  "deleting": {
  2708                      "type": "integer"
  2709                  },
  2710                  "finished": {
  2711                      "type": "integer"
  2712                  },
  2713                  "injecting": {
  2714                      "type": "integer"
  2715                  },
  2716                  "paused": {
  2717                      "type": "integer"
  2718                  },
  2719                  "running": {
  2720                      "type": "integer"
  2721                  }
  2722              }
  2723          },
  2724          "types.Archive": {
  2725              "type": "object",
  2726              "properties": {
  2727                  "created_at": {
  2728                      "type": "string"
  2729                  },
  2730                  "kind": {
  2731                      "type": "string"
  2732                  },
  2733                  "name": {
  2734                      "type": "string"
  2735                  },
  2736                  "namespace": {
  2737                      "type": "string"
  2738                  },
  2739                  "uid": {
  2740                      "type": "string"
  2741                  }
  2742              }
  2743          },
  2744          "types.ArchiveDetail": {
  2745              "type": "object",
  2746              "properties": {
  2747                  "created_at": {
  2748                      "type": "string"
  2749                  },
  2750                  "kind": {
  2751                      "type": "string"
  2752                  },
  2753                  "kube_object": {
  2754                      "$ref": "#/definitions/core.KubeObjectDesc"
  2755                  },
  2756                  "name": {
  2757                      "type": "string"
  2758                  },
  2759                  "namespace": {
  2760                      "type": "string"
  2761                  },
  2762                  "uid": {
  2763                      "type": "string"
  2764                  }
  2765              }
  2766          },
  2767          "types.Experiment": {
  2768              "type": "object",
  2769              "properties": {
  2770                  "created_at": {
  2771                      "type": "string"
  2772                  },
  2773                  "failed_message": {
  2774                      "type": "string"
  2775                  },
  2776                  "kind": {
  2777                      "type": "string"
  2778                  },
  2779                  "name": {
  2780                      "type": "string"
  2781                  },
  2782                  "namespace": {
  2783                      "type": "string"
  2784                  },
  2785                  "status": {
  2786                      "type": "string"
  2787                  },
  2788                  "uid": {
  2789                      "type": "string"
  2790                  }
  2791              }
  2792          },
  2793          "types.ExperimentDetail": {
  2794              "type": "object",
  2795              "properties": {
  2796                  "created_at": {
  2797                      "type": "string"
  2798                  },
  2799                  "failed_message": {
  2800                      "type": "string"
  2801                  },
  2802                  "kind": {
  2803                      "type": "string"
  2804                  },
  2805                  "kube_object": {
  2806                      "$ref": "#/definitions/core.KubeObjectDesc"
  2807                  },
  2808                  "name": {
  2809                      "type": "string"
  2810                  },
  2811                  "namespace": {
  2812                      "type": "string"
  2813                  },
  2814                  "status": {
  2815                      "type": "string"
  2816                  },
  2817                  "uid": {
  2818                      "type": "string"
  2819                  }
  2820              }
  2821          },
  2822          "types.PhysicalMachine": {
  2823              "type": "object",
  2824              "properties": {
  2825                  "address": {
  2826                      "type": "string"
  2827                  },
  2828                  "name": {
  2829                      "type": "string"
  2830                  },
  2831                  "namespace": {
  2832                      "type": "string"
  2833                  }
  2834              }
  2835          },
  2836          "types.Pod": {
  2837              "type": "object",
  2838              "properties": {
  2839                  "ip": {
  2840                      "type": "string"
  2841                  },
  2842                  "name": {
  2843                      "type": "string"
  2844                  },
  2845                  "namespace": {
  2846                      "type": "string"
  2847                  },
  2848                  "state": {
  2849                      "type": "string"
  2850                  }
  2851              }
  2852          },
  2853          "types.Schedule": {
  2854              "type": "object",
  2855              "properties": {
  2856                  "created_at": {
  2857                      "type": "string"
  2858                  },
  2859                  "kind": {
  2860                      "type": "string"
  2861                  },
  2862                  "name": {
  2863                      "type": "string"
  2864                  },
  2865                  "namespace": {
  2866                      "type": "string"
  2867                  },
  2868                  "status": {
  2869                      "type": "string"
  2870                  },
  2871                  "uid": {
  2872                      "type": "string"
  2873                  }
  2874              }
  2875          },
  2876          "types.ScheduleDetail": {
  2877              "type": "object",
  2878              "properties": {
  2879                  "created_at": {
  2880                      "type": "string"
  2881                  },
  2882                  "experiment_uids": {
  2883                      "type": "array",
  2884                      "items": {
  2885                          "type": "string"
  2886                      }
  2887                  },
  2888                  "kind": {
  2889                      "type": "string"
  2890                  },
  2891                  "kube_object": {
  2892                      "$ref": "#/definitions/core.KubeObjectDesc"
  2893                  },
  2894                  "name": {
  2895                      "type": "string"
  2896                  },
  2897                  "namespace": {
  2898                      "type": "string"
  2899                  },
  2900                  "status": {
  2901                      "type": "string"
  2902                  },
  2903                  "uid": {
  2904                      "type": "string"
  2905                  }
  2906              }
  2907          },
  2908          "types.StatusCheckTemplate": {
  2909              "type": "object",
  2910              "properties": {
  2911                  "description": {
  2912                      "type": "string"
  2913                  },
  2914                  "name": {
  2915                      "type": "string"
  2916                  },
  2917                  "namespace": {
  2918                      "type": "string"
  2919                  },
  2920                  "spec": {
  2921                      "$ref": "#/definitions/v1alpha1.StatusCheckTemplate"
  2922                  }
  2923              }
  2924          },
  2925          "types.StatusCheckTemplateBase": {
  2926              "type": "object",
  2927              "properties": {
  2928                  "created_at": {
  2929                      "type": "string"
  2930                  },
  2931                  "description": {
  2932                      "type": "string"
  2933                  },
  2934                  "name": {
  2935                      "type": "string"
  2936                  },
  2937                  "namespace": {
  2938                      "type": "string"
  2939                  },
  2940                  "uid": {
  2941                      "type": "string"
  2942                  }
  2943              }
  2944          },
  2945          "types.StatusCheckTemplateDetail": {
  2946              "type": "object",
  2947              "properties": {
  2948                  "created_at": {
  2949                      "type": "string"
  2950                  },
  2951                  "description": {
  2952                      "type": "string"
  2953                  },
  2954                  "name": {
  2955                      "type": "string"
  2956                  },
  2957                  "namespace": {
  2958                      "type": "string"
  2959                  },
  2960                  "spec": {
  2961                      "$ref": "#/definitions/v1alpha1.StatusCheckTemplate"
  2962                  },
  2963                  "uid": {
  2964                      "type": "string"
  2965                  }
  2966              }
  2967          },
  2968          "utils.APIError": {
  2969              "type": "object",
  2970              "properties": {
  2971                  "code": {
  2972                      "type": "integer"
  2973                  },
  2974                  "full_text": {
  2975                      "type": "string"
  2976                  },
  2977                  "message": {
  2978                      "type": "string"
  2979                  },
  2980                  "type": {
  2981                      "type": "string"
  2982                  }
  2983              }
  2984          },
  2985          "utils.MapStringSliceResponse": {
  2986              "type": "object",
  2987              "additionalProperties": {
  2988                  "type": "array",
  2989                  "items": {
  2990                      "type": "string"
  2991                  }
  2992              }
  2993          },
  2994          "utils.Response": {
  2995              "type": "object",
  2996              "properties": {
  2997                  "status": {
  2998                      "type": "string"
  2999                  }
  3000              }
  3001          },
  3002          "v1.AWSElasticBlockStoreVolumeSource": {
  3003              "type": "object",
  3004              "properties": {
  3005                  "fsType": {
  3006                      "description": "fsType is the filesystem type of the volume that you want to mount.\nTip: Ensure that the filesystem type is supported by the host operating system.\nExamples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\nTODO: how do we prevent errors in the filesystem from compromising the machine\n+optional",
  3007                      "type": "string"
  3008                  },
  3009                  "partition": {
  3010                      "description": "partition is the partition in the volume that you want to mount.\nIf omitted, the default is to mount by volume name.\nExamples: For volume /dev/sda1, you specify the partition as \"1\".\nSimilarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).\n+optional",
  3011                      "type": "integer"
  3012                  },
  3013                  "readOnly": {
  3014                      "description": "readOnly value true will force the readOnly setting in VolumeMounts.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\n+optional",
  3015                      "type": "boolean"
  3016                  },
  3017                  "volumeID": {
  3018                      "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
  3019                      "type": "string"
  3020                  }
  3021              }
  3022          },
  3023          "v1.AzureDiskVolumeSource": {
  3024              "type": "object",
  3025              "properties": {
  3026                  "cachingMode": {
  3027                      "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.\n+optional",
  3028                      "type": "string"
  3029                  },
  3030                  "diskName": {
  3031                      "description": "diskName is the Name of the data disk in the blob storage",
  3032                      "type": "string"
  3033                  },
  3034                  "diskURI": {
  3035                      "description": "diskURI is the URI of data disk in the blob storage",
  3036                      "type": "string"
  3037                  },
  3038                  "fsType": {
  3039                      "description": "fsType is Filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\n+optional",
  3040                      "type": "string"
  3041                  },
  3042                  "kind": {
  3043                      "description": "kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared",
  3044                      "type": "string"
  3045                  },
  3046                  "readOnly": {
  3047                      "description": "readOnly Defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  3048                      "type": "boolean"
  3049                  }
  3050              }
  3051          },
  3052          "v1.AzureFileVolumeSource": {
  3053              "type": "object",
  3054              "properties": {
  3055                  "readOnly": {
  3056                      "description": "readOnly defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  3057                      "type": "boolean"
  3058                  },
  3059                  "secretName": {
  3060                      "description": "secretName is the  name of secret that contains Azure Storage Account Name and Key",
  3061                      "type": "string"
  3062                  },
  3063                  "shareName": {
  3064                      "description": "shareName is the azure share Name",
  3065                      "type": "string"
  3066                  }
  3067              }
  3068          },
  3069          "v1.CSIVolumeSource": {
  3070              "type": "object",
  3071              "properties": {
  3072                  "driver": {
  3073                      "description": "driver is the name of the CSI driver that handles this volume.\nConsult with your admin for the correct name as registered in the cluster.",
  3074                      "type": "string"
  3075                  },
  3076                  "fsType": {
  3077                      "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\".\nIf not provided, the empty value is passed to the associated CSI driver\nwhich will determine the default filesystem to apply.\n+optional",
  3078                      "type": "string"
  3079                  },
  3080                  "nodePublishSecretRef": {
  3081                      "description": "nodePublishSecretRef is a reference to the secret object containing\nsensitive information to pass to the CSI driver to complete the CSI\nNodePublishVolume and NodeUnpublishVolume calls.\nThis field is optional, and  may be empty if no secret is required. If the\nsecret object contains more than one secret, all secret references are passed.\n+optional",
  3082                      "$ref": "#/definitions/v1.LocalObjectReference"
  3083                  },
  3084                  "readOnly": {
  3085                      "description": "readOnly specifies a read-only configuration for the volume.\nDefaults to false (read/write).\n+optional",
  3086                      "type": "boolean"
  3087                  },
  3088                  "volumeAttributes": {
  3089                      "description": "volumeAttributes stores driver-specific properties that are passed to the CSI\ndriver. Consult your driver's documentation for supported values.\n+optional",
  3090                      "type": "object",
  3091                      "additionalProperties": {
  3092                          "type": "string"
  3093                      }
  3094                  }
  3095              }
  3096          },
  3097          "v1.Capabilities": {
  3098              "type": "object",
  3099              "properties": {
  3100                  "add": {
  3101                      "description": "Added capabilities\n+optional",
  3102                      "type": "array",
  3103                      "items": {
  3104                          "type": "string"
  3105                      }
  3106                  },
  3107                  "drop": {
  3108                      "description": "Removed capabilities\n+optional",
  3109                      "type": "array",
  3110                      "items": {
  3111                          "type": "string"
  3112                      }
  3113                  }
  3114              }
  3115          },
  3116          "v1.CephFSVolumeSource": {
  3117              "type": "object",
  3118              "properties": {
  3119                  "monitors": {
  3120                      "description": "monitors is Required: Monitors is a collection of Ceph monitors\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
  3121                      "type": "array",
  3122                      "items": {
  3123                          "type": "string"
  3124                      }
  3125                  },
  3126                  "path": {
  3127                      "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /\n+optional",
  3128                      "type": "string"
  3129                  },
  3130                  "readOnly": {
  3131                      "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\n+optional",
  3132                      "type": "boolean"
  3133                  },
  3134                  "secretFile": {
  3135                      "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\n+optional",
  3136                      "type": "string"
  3137                  },
  3138                  "secretRef": {
  3139                      "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty.\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\n+optional",
  3140                      "$ref": "#/definitions/v1.LocalObjectReference"
  3141                  },
  3142                  "user": {
  3143                      "description": "user is optional: User is the rados user name, default is admin\nMore info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it\n+optional",
  3144                      "type": "string"
  3145                  }
  3146              }
  3147          },
  3148          "v1.CinderVolumeSource": {
  3149              "type": "object",
  3150              "properties": {
  3151                  "fsType": {
  3152                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nExamples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\n+optional",
  3153                      "type": "string"
  3154                  },
  3155                  "readOnly": {
  3156                      "description": "readOnly defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\n+optional",
  3157                      "type": "boolean"
  3158                  },
  3159                  "secretRef": {
  3160                      "description": "secretRef is optional: points to a secret object containing parameters used to connect\nto OpenStack.\n+optional",
  3161                      "$ref": "#/definitions/v1.LocalObjectReference"
  3162                  },
  3163                  "volumeID": {
  3164                      "description": "volumeID used to identify the volume in cinder.\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md",
  3165                      "type": "string"
  3166                  }
  3167              }
  3168          },
  3169          "v1.ConfigMapEnvSource": {
  3170              "type": "object",
  3171              "properties": {
  3172                  "name": {
  3173                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  3174                      "type": "string"
  3175                  },
  3176                  "optional": {
  3177                      "description": "Specify whether the ConfigMap must be defined\n+optional",
  3178                      "type": "boolean"
  3179                  }
  3180              }
  3181          },
  3182          "v1.ConfigMapKeySelector": {
  3183              "type": "object",
  3184              "properties": {
  3185                  "key": {
  3186                      "description": "The key to select.",
  3187                      "type": "string"
  3188                  },
  3189                  "name": {
  3190                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  3191                      "type": "string"
  3192                  },
  3193                  "optional": {
  3194                      "description": "Specify whether the ConfigMap or its key must be defined\n+optional",
  3195                      "type": "boolean"
  3196                  }
  3197              }
  3198          },
  3199          "v1.ConfigMapProjection": {
  3200              "type": "object",
  3201              "properties": {
  3202                  "items": {
  3203                      "description": "items if unspecified, each key-value pair in the Data field of the referenced\nConfigMap will be projected into the volume as a file whose name is the\nkey and content is the value. If specified, the listed keys will be\nprojected into the specified paths, and unlisted keys will not be\npresent. If a key is specified which is not present in the ConfigMap,\nthe volume setup will error unless it is marked optional. Paths must be\nrelative and may not contain the '..' path or start with '..'.\n+optional",
  3204                      "type": "array",
  3205                      "items": {
  3206                          "$ref": "#/definitions/v1.KeyToPath"
  3207                      }
  3208                  },
  3209                  "name": {
  3210                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  3211                      "type": "string"
  3212                  },
  3213                  "optional": {
  3214                      "description": "optional specify whether the ConfigMap or its keys must be defined\n+optional",
  3215                      "type": "boolean"
  3216                  }
  3217              }
  3218          },
  3219          "v1.ConfigMapVolumeSource": {
  3220              "type": "object",
  3221              "properties": {
  3222                  "defaultMode": {
  3223                      "description": "defaultMode is optional: mode bits used to set permissions on created files by default.\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\nDefaults to 0644.\nDirectories within the path are not affected by this setting.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  3224                      "type": "integer"
  3225                  },
  3226                  "items": {
  3227                      "description": "items if unspecified, each key-value pair in the Data field of the referenced\nConfigMap will be projected into the volume as a file whose name is the\nkey and content is the value. If specified, the listed keys will be\nprojected into the specified paths, and unlisted keys will not be\npresent. If a key is specified which is not present in the ConfigMap,\nthe volume setup will error unless it is marked optional. Paths must be\nrelative and may not contain the '..' path or start with '..'.\n+optional",
  3228                      "type": "array",
  3229                      "items": {
  3230                          "$ref": "#/definitions/v1.KeyToPath"
  3231                      }
  3232                  },
  3233                  "name": {
  3234                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  3235                      "type": "string"
  3236                  },
  3237                  "optional": {
  3238                      "description": "optional specify whether the ConfigMap or its keys must be defined\n+optional",
  3239                      "type": "boolean"
  3240                  }
  3241              }
  3242          },
  3243          "v1.Container": {
  3244              "type": "object",
  3245              "properties": {
  3246                  "args": {
  3247                      "description": "Arguments to the entrypoint.\nThe container image's CMD is used if this is not provided.\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will\nproduce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless\nof whether the variable exists or not. Cannot be updated.\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\n+optional",
  3248                      "type": "array",
  3249                      "items": {
  3250                          "type": "string"
  3251                      }
  3252                  },
  3253                  "command": {
  3254                      "description": "Entrypoint array. Not executed within a shell.\nThe container image's ENTRYPOINT is used if this is not provided.\nVariable references $(VAR_NAME) are expanded using the container's environment. If a variable\ncannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will\nproduce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless\nof whether the variable exists or not. Cannot be updated.\nMore info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell\n+optional",
  3255                      "type": "array",
  3256                      "items": {
  3257                          "type": "string"
  3258                      }
  3259                  },
  3260                  "env": {
  3261                      "description": "List of environment variables to set in the container.\nCannot be updated.\n+optional\n+patchMergeKey=name\n+patchStrategy=merge",
  3262                      "type": "array",
  3263                      "items": {
  3264                          "$ref": "#/definitions/v1.EnvVar"
  3265                      }
  3266                  },
  3267                  "envFrom": {
  3268                      "description": "List of sources to populate environment variables in the container.\nThe keys defined within a source must be a C_IDENTIFIER. All invalid keys\nwill be reported as an event when the container is starting. When a key exists in multiple\nsources, the value associated with the last source will take precedence.\nValues defined by an Env with a duplicate key will take precedence.\nCannot be updated.\n+optional",
  3269                      "type": "array",
  3270                      "items": {
  3271                          "$ref": "#/definitions/v1.EnvFromSource"
  3272                      }
  3273                  },
  3274                  "image": {
  3275                      "description": "Container image name.\nMore info: https://kubernetes.io/docs/concepts/containers/images\nThis field is optional to allow higher level config management to default or override\ncontainer images in workload controllers like Deployments and StatefulSets.\n+optional",
  3276                      "type": "string"
  3277                  },
  3278                  "imagePullPolicy": {
  3279                      "description": "Image pull policy.\nOne of Always, Never, IfNotPresent.\nDefaults to Always if :latest tag is specified, or IfNotPresent otherwise.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/containers/images#updating-images\n+optional",
  3280                      "type": "string"
  3281                  },
  3282                  "lifecycle": {
  3283                      "description": "Actions that the management system should take in response to container lifecycle events.\nCannot be updated.\n+optional",
  3284                      "$ref": "#/definitions/v1.Lifecycle"
  3285                  },
  3286                  "livenessProbe": {
  3287                      "description": "Periodic probe of container liveness.\nContainer will be restarted if the probe fails.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n+optional",
  3288                      "$ref": "#/definitions/v1.Probe"
  3289                  },
  3290                  "name": {
  3291                      "description": "Name of the container specified as a DNS_LABEL.\nEach container in a pod must have a unique name (DNS_LABEL).\nCannot be updated.",
  3292                      "type": "string"
  3293                  },
  3294                  "ports": {
  3295                      "description": "List of ports to expose from the container. Not specifying a port here\nDOES NOT prevent that port from being exposed. Any port which is\nlistening on the default \"0.0.0.0\" address inside a container will be\naccessible from the network.\nModifying this array with strategic merge patch may corrupt the data.\nFor more information See https://github.com/kubernetes/kubernetes/issues/108255.\nCannot be updated.\n+optional\n+patchMergeKey=containerPort\n+patchStrategy=merge\n+listType=map\n+listMapKey=containerPort\n+listMapKey=protocol",
  3296                      "type": "array",
  3297                      "items": {
  3298                          "$ref": "#/definitions/v1.ContainerPort"
  3299                      }
  3300                  },
  3301                  "readinessProbe": {
  3302                      "description": "Periodic probe of container service readiness.\nContainer will be removed from service endpoints if the probe fails.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n+optional",
  3303                      "$ref": "#/definitions/v1.Probe"
  3304                  },
  3305                  "resizePolicy": {
  3306                      "description": "Resources resize policy for the container.\n+featureGate=InPlacePodVerticalScaling\n+optional\n+listType=atomic",
  3307                      "type": "array",
  3308                      "items": {
  3309                          "$ref": "#/definitions/v1.ContainerResizePolicy"
  3310                      }
  3311                  },
  3312                  "resources": {
  3313                      "description": "Compute Resources required by this container.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n+optional",
  3314                      "$ref": "#/definitions/v1.ResourceRequirements"
  3315                  },
  3316                  "restartPolicy": {
  3317                      "description": "RestartPolicy defines the restart behavior of individual containers in a pod.\nThis field may only be set for init containers, and the only allowed value is \"Always\".\nFor non-init containers or when this field is not specified,\nthe restart behavior is defined by the Pod's restart policy and the container type.\nSetting the RestartPolicy as \"Always\" for the init container will have the following effect:\nthis init container will be continually restarted on\nexit until all regular containers have terminated. Once all regular\ncontainers have completed, all init containers with restartPolicy \"Always\"\nwill be shut down. This lifecycle differs from normal init containers and\nis often referred to as a \"sidecar\" container. Although this init\ncontainer still starts in the init container sequence, it does not wait\nfor the container to complete before proceeding to the next init\ncontainer. Instead, the next init container starts immediately after this\ninit container is started, or after any startupProbe has successfully\ncompleted.\n+featureGate=SidecarContainers\n+optional",
  3318                      "type": "string"
  3319                  },
  3320                  "securityContext": {
  3321                      "description": "SecurityContext defines the security options the container should be run with.\nIf set, the fields of SecurityContext override the equivalent fields of PodSecurityContext.\nMore info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/\n+optional",
  3322                      "$ref": "#/definitions/v1.SecurityContext"
  3323                  },
  3324                  "startupProbe": {
  3325                      "description": "StartupProbe indicates that the Pod has successfully initialized.\nIf specified, no other probes are executed until this completes successfully.\nIf this probe fails, the Pod will be restarted, just as if the livenessProbe failed.\nThis can be used to provide different probe parameters at the beginning of a Pod's lifecycle,\nwhen it might take a long time to load data or warm a cache, than during steady-state operation.\nThis cannot be updated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n+optional",
  3326                      "$ref": "#/definitions/v1.Probe"
  3327                  },
  3328                  "stdin": {
  3329                      "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this\nis not set, reads from stdin in the container will always result in EOF.\nDefault is false.\n+optional",
  3330                      "type": "boolean"
  3331                  },
  3332                  "stdinOnce": {
  3333                      "description": "Whether the container runtime should close the stdin channel after it has been opened by\na single attach. When stdin is true the stdin stream will remain open across multiple attach\nsessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the\nfirst client attaches to stdin, and then remains open and accepts data until the client disconnects,\nat which time stdin is closed and remains closed until the container is restarted. If this\nflag is false, a container processes that reads from stdin will never receive an EOF.\nDefault is false\n+optional",
  3334                      "type": "boolean"
  3335                  },
  3336                  "terminationMessagePath": {
  3337                      "description": "Optional: Path at which the file to which the container's termination message\nwill be written is mounted into the container's filesystem.\nMessage written is intended to be brief final status, such as an assertion failure message.\nWill be truncated by the node if greater than 4096 bytes. The total message length across\nall containers will be limited to 12kb.\nDefaults to /dev/termination-log.\nCannot be updated.\n+optional",
  3338                      "type": "string"
  3339                  },
  3340                  "terminationMessagePolicy": {
  3341                      "description": "Indicate how the termination message should be populated. File will use the contents of\nterminationMessagePath to populate the container status message on both success and failure.\nFallbackToLogsOnError will use the last chunk of container log output if the termination\nmessage file is empty and the container exited with an error.\nThe log output is limited to 2048 bytes or 80 lines, whichever is smaller.\nDefaults to File.\nCannot be updated.\n+optional",
  3342                      "type": "string"
  3343                  },
  3344                  "tty": {
  3345                      "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true.\nDefault is false.\n+optional",
  3346                      "type": "boolean"
  3347                  },
  3348                  "volumeDevices": {
  3349                      "description": "volumeDevices is the list of block devices to be used by the container.\n+patchMergeKey=devicePath\n+patchStrategy=merge\n+optional",
  3350                      "type": "array",
  3351                      "items": {
  3352                          "$ref": "#/definitions/v1.VolumeDevice"
  3353                      }
  3354                  },
  3355                  "volumeMounts": {
  3356                      "description": "Pod volumes to mount into the container's filesystem.\nCannot be updated.\n+optional\n+patchMergeKey=mountPath\n+patchStrategy=merge",
  3357                      "type": "array",
  3358                      "items": {
  3359                          "$ref": "#/definitions/v1.VolumeMount"
  3360                      }
  3361                  },
  3362                  "workingDir": {
  3363                      "description": "Container's working directory.\nIf not specified, the container runtime's default will be used, which\nmight be configured in the container image.\nCannot be updated.\n+optional",
  3364                      "type": "string"
  3365                  }
  3366              }
  3367          },
  3368          "v1.ContainerPort": {
  3369              "type": "object",
  3370              "properties": {
  3371                  "containerPort": {
  3372                      "description": "Number of port to expose on the pod's IP address.\nThis must be a valid port number, 0 \u003c x \u003c 65536.",
  3373                      "type": "integer"
  3374                  },
  3375                  "hostIP": {
  3376                      "description": "What host IP to bind the external port to.\n+optional",
  3377                      "type": "string"
  3378                  },
  3379                  "hostPort": {
  3380                      "description": "Number of port to expose on the host.\nIf specified, this must be a valid port number, 0 \u003c x \u003c 65536.\nIf HostNetwork is specified, this must match ContainerPort.\nMost containers do not need this.\n+optional",
  3381                      "type": "integer"
  3382                  },
  3383                  "name": {
  3384                      "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each\nnamed port in a pod must have a unique name. Name for the port that can be\nreferred to by services.\n+optional",
  3385                      "type": "string"
  3386                  },
  3387                  "protocol": {
  3388                      "description": "Protocol for port. Must be UDP, TCP, or SCTP.\nDefaults to \"TCP\".\n+optional\n+default=\"TCP\"",
  3389                      "type": "string"
  3390                  }
  3391              }
  3392          },
  3393          "v1.ContainerResizePolicy": {
  3394              "type": "object",
  3395              "properties": {
  3396                  "resourceName": {
  3397                      "description": "Name of the resource to which this resource resize policy applies.\nSupported values: cpu, memory.",
  3398                      "type": "string"
  3399                  },
  3400                  "restartPolicy": {
  3401                      "description": "Restart policy to apply when specified resource is resized.\nIf not specified, it defaults to NotRequired.",
  3402                      "type": "string"
  3403                  }
  3404              }
  3405          },
  3406          "v1.DownwardAPIProjection": {
  3407              "type": "object",
  3408              "properties": {
  3409                  "items": {
  3410                      "description": "Items is a list of DownwardAPIVolume file\n+optional",
  3411                      "type": "array",
  3412                      "items": {
  3413                          "$ref": "#/definitions/v1.DownwardAPIVolumeFile"
  3414                      }
  3415                  }
  3416              }
  3417          },
  3418          "v1.DownwardAPIVolumeFile": {
  3419              "type": "object",
  3420              "properties": {
  3421                  "fieldRef": {
  3422                      "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.\n+optional",
  3423                      "$ref": "#/definitions/v1.ObjectFieldSelector"
  3424                  },
  3425                  "mode": {
  3426                      "description": "Optional: mode bits used to set permissions on this file, must be an octal value\nbetween 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\nIf not specified, the volume defaultMode will be used.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  3427                      "type": "integer"
  3428                  },
  3429                  "path": {
  3430                      "description": "Required: Path is  the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'",
  3431                      "type": "string"
  3432                  },
  3433                  "resourceFieldRef": {
  3434                      "description": "Selects a resource of the container: only resources limits and requests\n(limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.\n+optional",
  3435                      "$ref": "#/definitions/v1.ResourceFieldSelector"
  3436                  }
  3437              }
  3438          },
  3439          "v1.DownwardAPIVolumeSource": {
  3440              "type": "object",
  3441              "properties": {
  3442                  "defaultMode": {
  3443                      "description": "Optional: mode bits to use on created files by default. Must be a\nOptional: mode bits used to set permissions on created files by default.\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\nDefaults to 0644.\nDirectories within the path are not affected by this setting.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  3444                      "type": "integer"
  3445                  },
  3446                  "items": {
  3447                      "description": "Items is a list of downward API volume file\n+optional",
  3448                      "type": "array",
  3449                      "items": {
  3450                          "$ref": "#/definitions/v1.DownwardAPIVolumeFile"
  3451                      }
  3452                  }
  3453              }
  3454          },
  3455          "v1.EmptyDirVolumeSource": {
  3456              "type": "object",
  3457              "properties": {
  3458                  "medium": {
  3459                      "description": "medium represents what type of storage medium should back this directory.\nThe default is \"\" which means to use the node's default medium.\nMust be an empty string (default) or Memory.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\n+optional",
  3460                      "type": "string"
  3461                  },
  3462                  "sizeLimit": {
  3463                      "description": "sizeLimit is the total amount of local storage required for this EmptyDir volume.\nThe size limit is also applicable for memory medium.\nThe maximum usage on memory medium EmptyDir would be the minimum value between\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\nThe default is nil which means that the limit is undefined.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\n+optional",
  3464                      "$ref": "#/definitions/resource.Quantity"
  3465                  }
  3466              }
  3467          },
  3468          "v1.EnvFromSource": {
  3469              "type": "object",
  3470              "properties": {
  3471                  "configMapRef": {
  3472                      "description": "The ConfigMap to select from\n+optional",
  3473                      "$ref": "#/definitions/v1.ConfigMapEnvSource"
  3474                  },
  3475                  "prefix": {
  3476                      "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.\n+optional",
  3477                      "type": "string"
  3478                  },
  3479                  "secretRef": {
  3480                      "description": "The Secret to select from\n+optional",
  3481                      "$ref": "#/definitions/v1.SecretEnvSource"
  3482                  }
  3483              }
  3484          },
  3485          "v1.EnvVar": {
  3486              "type": "object",
  3487              "properties": {
  3488                  "name": {
  3489                      "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
  3490                      "type": "string"
  3491                  },
  3492                  "value": {
  3493                      "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".\n+optional",
  3494                      "type": "string"
  3495                  },
  3496                  "valueFrom": {
  3497                      "description": "Source for the environment variable's value. Cannot be used if value is not empty.\n+optional",
  3498                      "$ref": "#/definitions/v1.EnvVarSource"
  3499                  }
  3500              }
  3501          },
  3502          "v1.EnvVarSource": {
  3503              "type": "object",
  3504              "properties": {
  3505                  "configMapKeyRef": {
  3506                      "description": "Selects a key of a ConfigMap.\n+optional",
  3507                      "$ref": "#/definitions/v1.ConfigMapKeySelector"
  3508                  },
  3509                  "fieldRef": {
  3510                      "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, ` + "`" + `metadata.labels['\u003cKEY\u003e']` + "`" + `, ` + "`" + `metadata.annotations['\u003cKEY\u003e']` + "`" + `,\nspec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.\n+optional",
  3511                      "$ref": "#/definitions/v1.ObjectFieldSelector"
  3512                  },
  3513                  "resourceFieldRef": {
  3514                      "description": "Selects a resource of the container: only resources limits and requests\n(limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.\n+optional",
  3515                      "$ref": "#/definitions/v1.ResourceFieldSelector"
  3516                  },
  3517                  "secretKeyRef": {
  3518                      "description": "Selects a key of a secret in the pod's namespace\n+optional",
  3519                      "$ref": "#/definitions/v1.SecretKeySelector"
  3520                  }
  3521              }
  3522          },
  3523          "v1.EphemeralVolumeSource": {
  3524              "type": "object",
  3525              "properties": {
  3526                  "volumeClaimTemplate": {
  3527                      "description": "Will be used to create a stand-alone PVC to provision the volume.\nThe pod in which this EphemeralVolumeSource is embedded will be the\nowner of the PVC, i.e. the PVC will be deleted together with the\npod.  The name of the PVC will be ` + "`" + `\u003cpod name\u003e-\u003cvolume name\u003e` + "`" + ` where\n` + "`" + `\u003cvolume name\u003e` + "`" + ` is the name from the ` + "`" + `PodSpec.Volumes` + "`" + ` array\nentry. Pod validation will reject the pod if the concatenated name\nis not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod\nwill *not* be used for the pod to avoid using an unrelated\nvolume by mistake. Starting the pod is then blocked until\nthe unrelated PVC is removed. If such a pre-created PVC is\nmeant to be used by the pod, the PVC has to updated with an\nowner reference to the pod once the pod exists. Normally\nthis should not be necessary, but it may be useful when\nmanually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes\nto the PVC after it has been created.\n\nRequired, must not be nil.",
  3528                      "$ref": "#/definitions/v1.PersistentVolumeClaimTemplate"
  3529                  }
  3530              }
  3531          },
  3532          "v1.ExecAction": {
  3533              "type": "object",
  3534              "properties": {
  3535                  "command": {
  3536                      "description": "Command is the command line to execute inside the container, the working directory for the\ncommand  is root ('/') in the container's filesystem. The command is simply exec'd, it is\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\na shell, you need to explicitly call out to that shell.\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.\n+optional",
  3537                      "type": "array",
  3538                      "items": {
  3539                          "type": "string"
  3540                      }
  3541                  }
  3542              }
  3543          },
  3544          "v1.FCVolumeSource": {
  3545              "type": "object",
  3546              "properties": {
  3547                  "fsType": {
  3548                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nTODO: how do we prevent errors in the filesystem from compromising the machine\n+optional",
  3549                      "type": "string"
  3550                  },
  3551                  "lun": {
  3552                      "description": "lun is Optional: FC target lun number\n+optional",
  3553                      "type": "integer"
  3554                  },
  3555                  "readOnly": {
  3556                      "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  3557                      "type": "boolean"
  3558                  },
  3559                  "targetWWNs": {
  3560                      "description": "targetWWNs is Optional: FC target worldwide names (WWNs)\n+optional",
  3561                      "type": "array",
  3562                      "items": {
  3563                          "type": "string"
  3564                      }
  3565                  },
  3566                  "wwids": {
  3567                      "description": "wwids Optional: FC volume world wide identifiers (wwids)\nEither wwids or combination of targetWWNs and lun must be set, but not both simultaneously.\n+optional",
  3568                      "type": "array",
  3569                      "items": {
  3570                          "type": "string"
  3571                      }
  3572                  }
  3573              }
  3574          },
  3575          "v1.FieldsV1": {
  3576              "type": "object"
  3577          },
  3578          "v1.FlexVolumeSource": {
  3579              "type": "object",
  3580              "properties": {
  3581                  "driver": {
  3582                      "description": "driver is the name of the driver to use for this volume.",
  3583                      "type": "string"
  3584                  },
  3585                  "fsType": {
  3586                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.\n+optional",
  3587                      "type": "string"
  3588                  },
  3589                  "options": {
  3590                      "description": "options is Optional: this field holds extra command options if any.\n+optional",
  3591                      "type": "object",
  3592                      "additionalProperties": {
  3593                          "type": "string"
  3594                      }
  3595                  },
  3596                  "readOnly": {
  3597                      "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  3598                      "type": "boolean"
  3599                  },
  3600                  "secretRef": {
  3601                      "description": "secretRef is Optional: secretRef is reference to the secret object containing\nsensitive information to pass to the plugin scripts. This may be\nempty if no secret object is specified. If the secret object\ncontains more than one secret, all secrets are passed to the plugin\nscripts.\n+optional",
  3602                      "$ref": "#/definitions/v1.LocalObjectReference"
  3603                  }
  3604              }
  3605          },
  3606          "v1.FlockerVolumeSource": {
  3607              "type": "object",
  3608              "properties": {
  3609                  "datasetName": {
  3610                      "description": "datasetName is Name of the dataset stored as metadata -\u003e name on the dataset for Flocker\nshould be considered as deprecated\n+optional",
  3611                      "type": "string"
  3612                  },
  3613                  "datasetUUID": {
  3614                      "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset\n+optional",
  3615                      "type": "string"
  3616                  }
  3617              }
  3618          },
  3619          "v1.GCEPersistentDiskVolumeSource": {
  3620              "type": "object",
  3621              "properties": {
  3622                  "fsType": {
  3623                      "description": "fsType is filesystem type of the volume that you want to mount.\nTip: Ensure that the filesystem type is supported by the host operating system.\nExamples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\nTODO: how do we prevent errors in the filesystem from compromising the machine\n+optional",
  3624                      "type": "string"
  3625                  },
  3626                  "partition": {
  3627                      "description": "partition is the partition in the volume that you want to mount.\nIf omitted, the default is to mount by volume name.\nExamples: For volume /dev/sda1, you specify the partition as \"1\".\nSimilarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\n+optional",
  3628                      "type": "integer"
  3629                  },
  3630                  "pdName": {
  3631                      "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
  3632                      "type": "string"
  3633                  },
  3634                  "readOnly": {
  3635                      "description": "readOnly here will force the ReadOnly setting in VolumeMounts.\nDefaults to false.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\n+optional",
  3636                      "type": "boolean"
  3637                  }
  3638              }
  3639          },
  3640          "v1.GRPCAction": {
  3641              "type": "object",
  3642              "properties": {
  3643                  "port": {
  3644                      "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
  3645                      "type": "integer"
  3646                  },
  3647                  "service": {
  3648                      "description": "Service is the name of the service to place in the gRPC HealthCheckRequest\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.\n+optional\n+default=\"\"",
  3649                      "type": "string"
  3650                  }
  3651              }
  3652          },
  3653          "v1.GitRepoVolumeSource": {
  3654              "type": "object",
  3655              "properties": {
  3656                  "directory": {
  3657                      "description": "directory is the target directory name.\nMust not contain or start with '..'.  If '.' is supplied, the volume directory will be the\ngit repository.  Otherwise, if specified, the volume will contain the git repository in\nthe subdirectory with the given name.\n+optional",
  3658                      "type": "string"
  3659                  },
  3660                  "repository": {
  3661                      "description": "repository is the URL",
  3662                      "type": "string"
  3663                  },
  3664                  "revision": {
  3665                      "description": "revision is the commit hash for the specified revision.\n+optional",
  3666                      "type": "string"
  3667                  }
  3668              }
  3669          },
  3670          "v1.GlusterfsVolumeSource": {
  3671              "type": "object",
  3672              "properties": {
  3673                  "endpoints": {
  3674                      "description": "endpoints is the endpoint name that details Glusterfs topology.\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
  3675                      "type": "string"
  3676                  },
  3677                  "path": {
  3678                      "description": "path is the Glusterfs volume path.\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod",
  3679                      "type": "string"
  3680                  },
  3681                  "readOnly": {
  3682                      "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions.\nDefaults to false.\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod\n+optional",
  3683                      "type": "boolean"
  3684                  }
  3685              }
  3686          },
  3687          "v1.HTTPGetAction": {
  3688              "type": "object",
  3689              "properties": {
  3690                  "host": {
  3691                      "description": "Host name to connect to, defaults to the pod IP. You probably want to set\n\"Host\" in httpHeaders instead.\n+optional",
  3692                      "type": "string"
  3693                  },
  3694                  "httpHeaders": {
  3695                      "description": "Custom headers to set in the request. HTTP allows repeated headers.\n+optional",
  3696                      "type": "array",
  3697                      "items": {
  3698                          "$ref": "#/definitions/v1.HTTPHeader"
  3699                      }
  3700                  },
  3701                  "path": {
  3702                      "description": "Path to access on the HTTP server.\n+optional",
  3703                      "type": "string"
  3704                  },
  3705                  "port": {
  3706                      "description": "Name or number of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
  3707                      "$ref": "#/definitions/intstr.IntOrString"
  3708                  },
  3709                  "scheme": {
  3710                      "description": "Scheme to use for connecting to the host.\nDefaults to HTTP.\n+optional",
  3711                      "type": "string"
  3712                  }
  3713              }
  3714          },
  3715          "v1.HTTPHeader": {
  3716              "type": "object",
  3717              "properties": {
  3718                  "name": {
  3719                      "description": "The header field name.\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.",
  3720                      "type": "string"
  3721                  },
  3722                  "value": {
  3723                      "description": "The header field value",
  3724                      "type": "string"
  3725                  }
  3726              }
  3727          },
  3728          "v1.HostPathVolumeSource": {
  3729              "type": "object",
  3730              "properties": {
  3731                  "path": {
  3732                      "description": "path of the directory on the host.\nIf the path is a symlink, it will follow the link to the real path.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
  3733                      "type": "string"
  3734                  },
  3735                  "type": {
  3736                      "description": "type for HostPath Volume\nDefaults to \"\"\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\n+optional",
  3737                      "type": "string"
  3738                  }
  3739              }
  3740          },
  3741          "v1.ISCSIVolumeSource": {
  3742              "type": "object",
  3743              "properties": {
  3744                  "chapAuthDiscovery": {
  3745                      "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication\n+optional",
  3746                      "type": "boolean"
  3747                  },
  3748                  "chapAuthSession": {
  3749                      "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication\n+optional",
  3750                      "type": "boolean"
  3751                  },
  3752                  "fsType": {
  3753                      "description": "fsType is the filesystem type of the volume that you want to mount.\nTip: Ensure that the filesystem type is supported by the host operating system.\nExamples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi\nTODO: how do we prevent errors in the filesystem from compromising the machine\n+optional",
  3754                      "type": "string"
  3755                  },
  3756                  "initiatorName": {
  3757                      "description": "initiatorName is the custom iSCSI Initiator Name.\nIf initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface\n\u003ctarget portal\u003e:\u003cvolume name\u003e will be created for the connection.\n+optional",
  3758                      "type": "string"
  3759                  },
  3760                  "iqn": {
  3761                      "description": "iqn is the target iSCSI Qualified Name.",
  3762                      "type": "string"
  3763                  },
  3764                  "iscsiInterface": {
  3765                      "description": "iscsiInterface is the interface Name that uses an iSCSI transport.\nDefaults to 'default' (tcp).\n+optional",
  3766                      "type": "string"
  3767                  },
  3768                  "lun": {
  3769                      "description": "lun represents iSCSI Target Lun number.",
  3770                      "type": "integer"
  3771                  },
  3772                  "portals": {
  3773                      "description": "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port\nis other than default (typically TCP ports 860 and 3260).\n+optional",
  3774                      "type": "array",
  3775                      "items": {
  3776                          "type": "string"
  3777                      }
  3778                  },
  3779                  "readOnly": {
  3780                      "description": "readOnly here will force the ReadOnly setting in VolumeMounts.\nDefaults to false.\n+optional",
  3781                      "type": "boolean"
  3782                  },
  3783                  "secretRef": {
  3784                      "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication\n+optional",
  3785                      "$ref": "#/definitions/v1.LocalObjectReference"
  3786                  },
  3787                  "targetPortal": {
  3788                      "description": "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port\nis other than default (typically TCP ports 860 and 3260).",
  3789                      "type": "string"
  3790                  }
  3791              }
  3792          },
  3793          "v1.KeyToPath": {
  3794              "type": "object",
  3795              "properties": {
  3796                  "key": {
  3797                      "description": "key is the key to project.",
  3798                      "type": "string"
  3799                  },
  3800                  "mode": {
  3801                      "description": "mode is Optional: mode bits used to set permissions on this file.\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\nIf not specified, the volume defaultMode will be used.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  3802                      "type": "integer"
  3803                  },
  3804                  "path": {
  3805                      "description": "path is the relative path of the file to map the key to.\nMay not be an absolute path.\nMay not contain the path element '..'.\nMay not start with the string '..'.",
  3806                      "type": "string"
  3807                  }
  3808              }
  3809          },
  3810          "v1.LabelSelector": {
  3811              "type": "object",
  3812              "properties": {
  3813                  "matchExpressions": {
  3814                      "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.\n+optional",
  3815                      "type": "array",
  3816                      "items": {
  3817                          "$ref": "#/definitions/v1.LabelSelectorRequirement"
  3818                      }
  3819                  },
  3820                  "matchLabels": {
  3821                      "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.\n+optional",
  3822                      "type": "object",
  3823                      "additionalProperties": {
  3824                          "type": "string"
  3825                      }
  3826                  }
  3827              }
  3828          },
  3829          "v1.LabelSelectorRequirement": {
  3830              "type": "object",
  3831              "properties": {
  3832                  "key": {
  3833                      "description": "key is the label key that the selector applies to.",
  3834                      "type": "string"
  3835                  },
  3836                  "operator": {
  3837                      "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
  3838                      "type": "string"
  3839                  },
  3840                  "values": {
  3841                      "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.\n+optional",
  3842                      "type": "array",
  3843                      "items": {
  3844                          "type": "string"
  3845                      }
  3846                  }
  3847              }
  3848          },
  3849          "v1.Lifecycle": {
  3850              "type": "object",
  3851              "properties": {
  3852                  "postStart": {
  3853                      "description": "PostStart is called immediately after a container is created. If the handler fails,\nthe container is terminated and restarted according to its restart policy.\nOther management of the container blocks until the hook completes.\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\n+optional",
  3854                      "$ref": "#/definitions/v1.LifecycleHandler"
  3855                  },
  3856                  "preStop": {
  3857                      "description": "PreStop is called immediately before a container is terminated due to an\nAPI request or management event such as liveness/startup probe failure,\npreemption, resource contention, etc. The handler is not called if the\ncontainer crashes or exits. The Pod's termination grace period countdown begins before the\nPreStop hook is executed. Regardless of the outcome of the handler, the\ncontainer will eventually terminate within the Pod's termination grace\nperiod (unless delayed by finalizers). Other management of the container blocks until the hook completes\nor until the termination grace period is reached.\nMore info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks\n+optional",
  3858                      "$ref": "#/definitions/v1.LifecycleHandler"
  3859                  }
  3860              }
  3861          },
  3862          "v1.LifecycleHandler": {
  3863              "type": "object",
  3864              "properties": {
  3865                  "exec": {
  3866                      "description": "Exec specifies the action to take.\n+optional",
  3867                      "$ref": "#/definitions/v1.ExecAction"
  3868                  },
  3869                  "httpGet": {
  3870                      "description": "HTTPGet specifies the http request to perform.\n+optional",
  3871                      "$ref": "#/definitions/v1.HTTPGetAction"
  3872                  },
  3873                  "tcpSocket": {
  3874                      "description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept\nfor the backward compatibility. There are no validation of this field and\nlifecycle hooks will fail in runtime when tcp handler is specified.\n+optional",
  3875                      "$ref": "#/definitions/v1.TCPSocketAction"
  3876                  }
  3877              }
  3878          },
  3879          "v1.LocalObjectReference": {
  3880              "type": "object",
  3881              "properties": {
  3882                  "name": {
  3883                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  3884                      "type": "string"
  3885                  }
  3886              }
  3887          },
  3888          "v1.ManagedFieldsEntry": {
  3889              "type": "object",
  3890              "properties": {
  3891                  "apiVersion": {
  3892                      "description": "APIVersion defines the version of this resource that this field set\napplies to. The format is \"group/version\" just like the top-level\nAPIVersion field. It is necessary to track the version of a field\nset because it cannot be automatically converted.",
  3893                      "type": "string"
  3894                  },
  3895                  "fieldsType": {
  3896                      "description": "FieldsType is the discriminator for the different fields format and version.\nThere is currently only one possible value: \"FieldsV1\"",
  3897                      "type": "string"
  3898                  },
  3899                  "fieldsV1": {
  3900                      "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type.\n+optional",
  3901                      "$ref": "#/definitions/v1.FieldsV1"
  3902                  },
  3903                  "manager": {
  3904                      "description": "Manager is an identifier of the workflow managing these fields.",
  3905                      "type": "string"
  3906                  },
  3907                  "operation": {
  3908                      "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created.\nThe only valid values for this field are 'Apply' and 'Update'.",
  3909                      "type": "string"
  3910                  },
  3911                  "subresource": {
  3912                      "description": "Subresource is the name of the subresource used to update that object, or\nempty string if the object was updated through the main resource. The\nvalue of this field is used to distinguish between managers, even if they\nshare the same name. For example, a status update will be distinct from a\nregular update using the same manager name.\nNote that the APIVersion field is not related to the Subresource field and\nit always corresponds to the version of the main resource.",
  3913                      "type": "string"
  3914                  },
  3915                  "time": {
  3916                      "description": "Time is the timestamp of when the ManagedFields entry was added. The\ntimestamp will also be updated if a field is added, the manager\nchanges any of the owned fields value or removes a field. The\ntimestamp does not update when a field is removed from the entry\nbecause another manager took it over.\n+optional",
  3917                      "type": "string"
  3918                  }
  3919              }
  3920          },
  3921          "v1.NFSVolumeSource": {
  3922              "type": "object",
  3923              "properties": {
  3924                  "path": {
  3925                      "description": "path that is exported by the NFS server.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
  3926                      "type": "string"
  3927                  },
  3928                  "readOnly": {
  3929                      "description": "readOnly here will force the NFS export to be mounted with read-only permissions.\nDefaults to false.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\n+optional",
  3930                      "type": "boolean"
  3931                  },
  3932                  "server": {
  3933                      "description": "server is the hostname or IP address of the NFS server.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
  3934                      "type": "string"
  3935                  }
  3936              }
  3937          },
  3938          "v1.ObjectFieldSelector": {
  3939              "type": "object",
  3940              "properties": {
  3941                  "apiVersion": {
  3942                      "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".\n+optional",
  3943                      "type": "string"
  3944                  },
  3945                  "fieldPath": {
  3946                      "description": "Path of the field to select in the specified API version.",
  3947                      "type": "string"
  3948                  }
  3949              }
  3950          },
  3951          "v1.ObjectReference": {
  3952              "type": "object",
  3953              "properties": {
  3954                  "apiVersion": {
  3955                      "description": "API version of the referent.\n+optional",
  3956                      "type": "string"
  3957                  },
  3958                  "fieldPath": {
  3959                      "description": "If referring to a piece of an object instead of an entire object, this string\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\nFor example, if the object reference is to a container within a pod, this would take on a value like:\n\"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered\nthe event) or if no container name is specified \"spec.containers[2]\" (container with\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\nreferencing a part of an object.\nTODO: this design is not final and this field is subject to change in the future.\n+optional",
  3960                      "type": "string"
  3961                  },
  3962                  "kind": {
  3963                      "description": "Kind of the referent.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n+optional",
  3964                      "type": "string"
  3965                  },
  3966                  "name": {
  3967                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n+optional",
  3968                      "type": "string"
  3969                  },
  3970                  "namespace": {
  3971                      "description": "Namespace of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\n+optional",
  3972                      "type": "string"
  3973                  },
  3974                  "resourceVersion": {
  3975                      "description": "Specific resourceVersion to which this reference is made, if any.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional",
  3976                      "type": "string"
  3977                  },
  3978                  "uid": {
  3979                      "description": "UID of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\n+optional",
  3980                      "type": "string"
  3981                  }
  3982              }
  3983          },
  3984          "v1.OwnerReference": {
  3985              "type": "object",
  3986              "properties": {
  3987                  "apiVersion": {
  3988                      "description": "API version of the referent.",
  3989                      "type": "string"
  3990                  },
  3991                  "blockOwnerDeletion": {
  3992                      "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then\nthe owner cannot be deleted from the key-value store until this\nreference is removed.\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\nDefaults to false.\nTo set this field, a user needs \"delete\" permission of the owner,\notherwise 422 (Unprocessable Entity) will be returned.\n+optional",
  3993                      "type": "boolean"
  3994                  },
  3995                  "controller": {
  3996                      "description": "If true, this reference points to the managing controller.\n+optional",
  3997                      "type": "boolean"
  3998                  },
  3999                  "kind": {
  4000                      "description": "Kind of the referent.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
  4001                      "type": "string"
  4002                  },
  4003                  "name": {
  4004                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names",
  4005                      "type": "string"
  4006                  },
  4007                  "uid": {
  4008                      "description": "UID of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
  4009                      "type": "string"
  4010                  }
  4011              }
  4012          },
  4013          "v1.PersistentVolumeClaimSpec": {
  4014              "type": "object",
  4015              "properties": {
  4016                  "accessModes": {
  4017                      "description": "accessModes contains the desired access modes the volume should have.\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1\n+optional",
  4018                      "type": "array",
  4019                      "items": {
  4020                          "type": "string"
  4021                      }
  4022                  },
  4023                  "dataSource": {
  4024                      "description": "dataSource field can be used to specify either:\n* An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot)\n* An existing PVC (PersistentVolumeClaim)\nIf the provisioner or an external controller can support the specified data source,\nit will create a new volume based on the contents of the specified data source.\nWhen the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef,\nand dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified.\nIf the namespace is specified, then dataSourceRef will not be copied to dataSource.\n+optional",
  4025                      "$ref": "#/definitions/v1.TypedLocalObjectReference"
  4026                  },
  4027                  "dataSourceRef": {
  4028                      "description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty\nvolume is desired. This may be any object from a non-empty API group (non\ncore object) or a PersistentVolumeClaim object.\nWhen this field is specified, volume binding will only succeed if the type of\nthe specified object matches some installed volume populator or dynamic\nprovisioner.\nThis field will replace the functionality of the dataSource field and as such\nif both fields are non-empty, they must have the same value. For backwards\ncompatibility, when namespace isn't specified in dataSourceRef,\nboth fields (dataSource and dataSourceRef) will be set to the same\nvalue automatically if one of them is empty and the other is non-empty.\nWhen namespace is specified in dataSourceRef,\ndataSource isn't set to the same value and must be empty.\nThere are three important differences between dataSource and dataSourceRef:\n* While dataSource only allows two specific types of objects, dataSourceRef\n  allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n  preserves all values, and generates an error if a disallowed value is\n  specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n  in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled.\n(Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\n+optional",
  4029                      "$ref": "#/definitions/v1.TypedObjectReference"
  4030                  },
  4031                  "resources": {
  4032                      "description": "resources represents the minimum resources the volume should have.\nIf RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements\nthat are lower than previous value but must still be higher than capacity recorded in the\nstatus field of the claim.\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources\n+optional",
  4033                      "$ref": "#/definitions/v1.ResourceRequirements"
  4034                  },
  4035                  "selector": {
  4036                      "description": "selector is a label query over volumes to consider for binding.\n+optional",
  4037                      "$ref": "#/definitions/v1.LabelSelector"
  4038                  },
  4039                  "storageClassName": {
  4040                      "description": "storageClassName is the name of the StorageClass required by the claim.\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1\n+optional",
  4041                      "type": "string"
  4042                  },
  4043                  "volumeMode": {
  4044                      "description": "volumeMode defines what type of volume is required by the claim.\nValue of Filesystem is implied when not included in claim spec.\n+optional",
  4045                      "type": "string"
  4046                  },
  4047                  "volumeName": {
  4048                      "description": "volumeName is the binding reference to the PersistentVolume backing this claim.\n+optional",
  4049                      "type": "string"
  4050                  }
  4051              }
  4052          },
  4053          "v1.PersistentVolumeClaimTemplate": {
  4054              "type": "object",
  4055              "properties": {
  4056                  "annotations": {
  4057                      "description": "Annotations is an unstructured key value map stored with a resource that may be\nset by external tools to store and retrieve arbitrary metadata. They are not\nqueryable and should be preserved when modifying objects.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\n+optional",
  4058                      "type": "object",
  4059                      "additionalProperties": {
  4060                          "type": "string"
  4061                      }
  4062                  },
  4063                  "creationTimestamp": {
  4064                      "description": "CreationTimestamp is a timestamp representing the server time when this object was\ncreated. It is not guaranteed to be set in happens-before order across separate operations.\nClients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system.\nRead-only.\nNull for lists.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  4065                      "type": "string"
  4066                  },
  4067                  "deletionGracePeriodSeconds": {
  4068                      "description": "Number of seconds allowed for this object to gracefully terminate before\nit will be removed from the system. Only set when deletionTimestamp is also set.\nMay only be shortened.\nRead-only.\n+optional",
  4069                      "type": "integer"
  4070                  },
  4071                  "deletionTimestamp": {
  4072                      "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This\nfield is set by the server when a graceful deletion is requested by the user, and is not\ndirectly settable by a client. The resource is expected to be deleted (no longer visible\nfrom resource lists, and not reachable by name) after the time in this field, once the\nfinalizers list is empty. As long as the finalizers list contains items, deletion is blocked.\nOnce the deletionTimestamp is set, this value may not be unset or be set further into the\nfuture, although it may be shortened or the resource may be deleted prior to this time.\nFor example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react\nby sending a graceful termination signal to the containers in the pod. After that 30 seconds,\nthe Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,\nremove the pod from the API. In the presence of network partitions, this object may still\nexist after this timestamp, until an administrator or automated process can determine the\nresource is fully terminated.\nIf not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested.\nRead-only.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  4073                      "type": "string"
  4074                  },
  4075                  "finalizers": {
  4076                      "description": "Must be empty before the object is deleted from the registry. Each entry\nis an identifier for the responsible component that will remove the entry\nfrom the list. If the deletionTimestamp of the object is non-nil, entries\nin this list can only be removed.\nFinalizers may be processed and removed in any order.  Order is NOT enforced\nbecause it introduces significant risk of stuck finalizers.\nfinalizers is a shared field, any actor with permission can reorder it.\nIf the finalizer list is processed in order, then this can lead to a situation\nin which the component responsible for the first finalizer in the list is\nwaiting for a signal (field value, external system, or other) produced by a\ncomponent responsible for a finalizer later in the list, resulting in a deadlock.\nWithout enforced ordering finalizers are free to order amongst themselves and\nare not vulnerable to ordering changes in the list.\n+optional\n+patchStrategy=merge",
  4077                      "type": "array",
  4078                      "items": {
  4079                          "type": "string"
  4080                      }
  4081                  },
  4082                  "generateName": {
  4083                      "description": "GenerateName is an optional prefix, used by the server, to generate a unique\nname ONLY IF the Name field has not been provided.\nIf this field is used, the name returned to the client will be different\nthan the name passed. This value will also be combined with a unique suffix.\nThe provided value has the same validation rules as the Name field,\nand may be truncated by the length of the suffix required to make the value\nunique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\n+optional",
  4084                      "type": "string"
  4085                  },
  4086                  "generation": {
  4087                      "description": "A sequence number representing a specific generation of the desired state.\nPopulated by the system. Read-only.\n+optional",
  4088                      "type": "integer"
  4089                  },
  4090                  "labels": {
  4091                      "description": "Map of string keys and values that can be used to organize and categorize\n(scope and select) objects. May match selectors of replication controllers\nand services.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\n+optional",
  4092                      "type": "object",
  4093                      "additionalProperties": {
  4094                          "type": "string"
  4095                      }
  4096                  },
  4097                  "managedFields": {
  4098                      "description": "ManagedFields maps workflow-id and version to the set of fields\nthat are managed by that workflow. This is mostly for internal\nhousekeeping, and users typically shouldn't need to set or\nunderstand this field. A workflow can be the user's name, a\ncontroller's name, or the name of a specific apply path like\n\"ci-cd\". The set of fields is always in the version that the\nworkflow used when modifying the object.\n\n+optional",
  4099                      "type": "array",
  4100                      "items": {
  4101                          "$ref": "#/definitions/v1.ManagedFieldsEntry"
  4102                      }
  4103                  },
  4104                  "name": {
  4105                      "description": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\n+optional",
  4106                      "type": "string"
  4107                  },
  4108                  "namespace": {
  4109                      "description": "Namespace defines the space within which each name must be unique. An empty namespace is\nequivalent to the \"default\" namespace, but \"default\" is the canonical representation.\nNot all objects are required to be scoped to a namespace - the value of this field for\nthose objects will be empty.\n\nMust be a DNS_LABEL.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces\n+optional",
  4110                      "type": "string"
  4111                  },
  4112                  "ownerReferences": {
  4113                      "description": "List of objects depended by this object. If ALL objects in the list have\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\nthen an entry in this list will point to this controller, with the controller field set to true.\nThere cannot be more than one managing controller.\n+optional\n+patchMergeKey=uid\n+patchStrategy=merge",
  4114                      "type": "array",
  4115                      "items": {
  4116                          "$ref": "#/definitions/v1.OwnerReference"
  4117                      }
  4118                  },
  4119                  "resourceVersion": {
  4120                      "description": "An opaque value that represents the internal version of this object that can\nbe used by clients to determine when objects have changed. May be used for optimistic\nconcurrency, change detection, and the watch operation on a resource or set of resources.\nClients must treat these values as opaque and passed unmodified back to the server.\nThey may only be valid for a particular resource or set of resources.\n\nPopulated by the system.\nRead-only.\nValue must be treated as opaque by clients and .\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional",
  4121                      "type": "string"
  4122                  },
  4123                  "selfLink": {
  4124                      "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.\n+optional",
  4125                      "type": "string"
  4126                  },
  4127                  "spec": {
  4128                      "description": "The specification for the PersistentVolumeClaim. The entire content is\ncopied unchanged into the PVC that gets created from this\ntemplate. The same fields as in a PersistentVolumeClaim\nare also valid here.",
  4129                      "$ref": "#/definitions/v1.PersistentVolumeClaimSpec"
  4130                  },
  4131                  "uid": {
  4132                      "description": "UID is the unique in time and space value for this object. It is typically generated by\nthe server on successful creation of a resource and is not allowed to change on PUT\noperations.\n\nPopulated by the system.\nRead-only.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\n+optional",
  4133                      "type": "string"
  4134                  }
  4135              }
  4136          },
  4137          "v1.PersistentVolumeClaimVolumeSource": {
  4138              "type": "object",
  4139              "properties": {
  4140                  "claimName": {
  4141                      "description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims",
  4142                      "type": "string"
  4143                  },
  4144                  "readOnly": {
  4145                      "description": "readOnly Will force the ReadOnly setting in VolumeMounts.\nDefault false.\n+optional",
  4146                      "type": "boolean"
  4147                  }
  4148              }
  4149          },
  4150          "v1.PhotonPersistentDiskVolumeSource": {
  4151              "type": "object",
  4152              "properties": {
  4153                  "fsType": {
  4154                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.",
  4155                      "type": "string"
  4156                  },
  4157                  "pdID": {
  4158                      "description": "pdID is the ID that identifies Photon Controller persistent disk",
  4159                      "type": "string"
  4160                  }
  4161              }
  4162          },
  4163          "v1.PortworxVolumeSource": {
  4164              "type": "object",
  4165              "properties": {
  4166                  "fsType": {
  4167                      "description": "fSType represents the filesystem type to mount\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
  4168                      "type": "string"
  4169                  },
  4170                  "readOnly": {
  4171                      "description": "readOnly defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  4172                      "type": "boolean"
  4173                  },
  4174                  "volumeID": {
  4175                      "description": "volumeID uniquely identifies a Portworx volume",
  4176                      "type": "string"
  4177                  }
  4178              }
  4179          },
  4180          "v1.Probe": {
  4181              "type": "object",
  4182              "properties": {
  4183                  "exec": {
  4184                      "description": "Exec specifies the action to take.\n+optional",
  4185                      "$ref": "#/definitions/v1.ExecAction"
  4186                  },
  4187                  "failureThreshold": {
  4188                      "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded.\nDefaults to 3. Minimum value is 1.\n+optional",
  4189                      "type": "integer"
  4190                  },
  4191                  "grpc": {
  4192                      "description": "GRPC specifies an action involving a GRPC port.\n+optional",
  4193                      "$ref": "#/definitions/v1.GRPCAction"
  4194                  },
  4195                  "httpGet": {
  4196                      "description": "HTTPGet specifies the http request to perform.\n+optional",
  4197                      "$ref": "#/definitions/v1.HTTPGetAction"
  4198                  },
  4199                  "initialDelaySeconds": {
  4200                      "description": "Number of seconds after the container has started before liveness probes are initiated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n+optional",
  4201                      "type": "integer"
  4202                  },
  4203                  "periodSeconds": {
  4204                      "description": "How often (in seconds) to perform the probe.\nDefault to 10 seconds. Minimum value is 1.\n+optional",
  4205                      "type": "integer"
  4206                  },
  4207                  "successThreshold": {
  4208                      "description": "Minimum consecutive successes for the probe to be considered successful after having failed.\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.\n+optional",
  4209                      "type": "integer"
  4210                  },
  4211                  "tcpSocket": {
  4212                      "description": "TCPSocket specifies an action involving a TCP port.\n+optional",
  4213                      "$ref": "#/definitions/v1.TCPSocketAction"
  4214                  },
  4215                  "terminationGracePeriodSeconds": {
  4216                      "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\nThe grace period is the duration in seconds after the processes running in the pod are sent\na termination signal and the time when the processes are forcibly halted with a kill signal.\nSet this value longer than the expected cleanup time for your process.\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\nvalue overrides the value provided by the pod spec.\nValue must be non-negative integer. The value zero indicates stop immediately via\nthe kill signal (no opportunity to shut down).\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.\n+optional",
  4217                      "type": "integer"
  4218                  },
  4219                  "timeoutSeconds": {
  4220                      "description": "Number of seconds after which the probe times out.\nDefaults to 1 second. Minimum value is 1.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\n+optional",
  4221                      "type": "integer"
  4222                  }
  4223              }
  4224          },
  4225          "v1.ProjectedVolumeSource": {
  4226              "type": "object",
  4227              "properties": {
  4228                  "defaultMode": {
  4229                      "description": "defaultMode are the mode bits used to set permissions on created files by default.\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values for mode bits.\nDirectories within the path are not affected by this setting.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  4230                      "type": "integer"
  4231                  },
  4232                  "sources": {
  4233                      "description": "sources is the list of volume projections\n+optional",
  4234                      "type": "array",
  4235                      "items": {
  4236                          "$ref": "#/definitions/v1.VolumeProjection"
  4237                      }
  4238                  }
  4239              }
  4240          },
  4241          "v1.QuobyteVolumeSource": {
  4242              "type": "object",
  4243              "properties": {
  4244                  "group": {
  4245                      "description": "group to map volume access to\nDefault is no group\n+optional",
  4246                      "type": "string"
  4247                  },
  4248                  "readOnly": {
  4249                      "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions.\nDefaults to false.\n+optional",
  4250                      "type": "boolean"
  4251                  },
  4252                  "registry": {
  4253                      "description": "registry represents a single or multiple Quobyte Registry services\nspecified as a string as host:port pair (multiple entries are separated with commas)\nwhich acts as the central registry for volumes",
  4254                      "type": "string"
  4255                  },
  4256                  "tenant": {
  4257                      "description": "tenant owning the given Quobyte volume in the Backend\nUsed with dynamically provisioned Quobyte volumes, value is set by the plugin\n+optional",
  4258                      "type": "string"
  4259                  },
  4260                  "user": {
  4261                      "description": "user to map volume access to\nDefaults to serivceaccount user\n+optional",
  4262                      "type": "string"
  4263                  },
  4264                  "volume": {
  4265                      "description": "volume is a string that references an already created Quobyte volume by name.",
  4266                      "type": "string"
  4267                  }
  4268              }
  4269          },
  4270          "v1.RBDVolumeSource": {
  4271              "type": "object",
  4272              "properties": {
  4273                  "fsType": {
  4274                      "description": "fsType is the filesystem type of the volume that you want to mount.\nTip: Ensure that the filesystem type is supported by the host operating system.\nExamples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#rbd\nTODO: how do we prevent errors in the filesystem from compromising the machine\n+optional",
  4275                      "type": "string"
  4276                  },
  4277                  "image": {
  4278                      "description": "image is the rados image name.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
  4279                      "type": "string"
  4280                  },
  4281                  "keyring": {
  4282                      "description": "keyring is the path to key ring for RBDUser.\nDefault is /etc/ceph/keyring.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\n+optional",
  4283                      "type": "string"
  4284                  },
  4285                  "monitors": {
  4286                      "description": "monitors is a collection of Ceph monitors.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
  4287                      "type": "array",
  4288                      "items": {
  4289                          "type": "string"
  4290                      }
  4291                  },
  4292                  "pool": {
  4293                      "description": "pool is the rados pool name.\nDefault is rbd.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\n+optional",
  4294                      "type": "string"
  4295                  },
  4296                  "readOnly": {
  4297                      "description": "readOnly here will force the ReadOnly setting in VolumeMounts.\nDefaults to false.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\n+optional",
  4298                      "type": "boolean"
  4299                  },
  4300                  "secretRef": {
  4301                      "description": "secretRef is name of the authentication secret for RBDUser. If provided\noverrides keyring.\nDefault is nil.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\n+optional",
  4302                      "$ref": "#/definitions/v1.LocalObjectReference"
  4303                  },
  4304                  "user": {
  4305                      "description": "user is the rados user name.\nDefault is admin.\nMore info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it\n+optional",
  4306                      "type": "string"
  4307                  }
  4308              }
  4309          },
  4310          "v1.ResourceClaim": {
  4311              "type": "object",
  4312              "properties": {
  4313                  "name": {
  4314                      "description": "Name must match the name of one entry in pod.spec.resourceClaims of\nthe Pod where this field is used. It makes that resource available\ninside a container.",
  4315                      "type": "string"
  4316                  }
  4317              }
  4318          },
  4319          "v1.ResourceFieldSelector": {
  4320              "type": "object",
  4321              "properties": {
  4322                  "containerName": {
  4323                      "description": "Container name: required for volumes, optional for env vars\n+optional",
  4324                      "type": "string"
  4325                  },
  4326                  "divisor": {
  4327                      "description": "Specifies the output format of the exposed resources, defaults to \"1\"\n+optional",
  4328                      "$ref": "#/definitions/resource.Quantity"
  4329                  },
  4330                  "resource": {
  4331                      "description": "Required: resource to select",
  4332                      "type": "string"
  4333                  }
  4334              }
  4335          },
  4336          "v1.ResourceList": {
  4337              "type": "object",
  4338              "additionalProperties": {
  4339                  "$ref": "#/definitions/resource.Quantity"
  4340              }
  4341          },
  4342          "v1.ResourceRequirements": {
  4343              "type": "object",
  4344              "properties": {
  4345                  "claims": {
  4346                      "description": "Claims lists the names of resources, defined in spec.resourceClaims,\nthat are used by this container.\n\nThis is an alpha field and requires enabling the\nDynamicResourceAllocation feature gate.\n\nThis field is immutable. It can only be set for containers.\n\n+listType=map\n+listMapKey=name\n+featureGate=DynamicResourceAllocation\n+optional",
  4347                      "type": "array",
  4348                      "items": {
  4349                          "$ref": "#/definitions/v1.ResourceClaim"
  4350                      }
  4351                  },
  4352                  "limits": {
  4353                      "description": "Limits describes the maximum amount of compute resources allowed.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n+optional",
  4354                      "$ref": "#/definitions/v1.ResourceList"
  4355                  },
  4356                  "requests": {
  4357                      "description": "Requests describes the minimum amount of compute resources required.\nIf Requests is omitted for a container, it defaults to Limits if that is explicitly specified,\notherwise to an implementation-defined value. Requests cannot exceed Limits.\nMore info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/\n+optional",
  4358                      "$ref": "#/definitions/v1.ResourceList"
  4359                  }
  4360              }
  4361          },
  4362          "v1.SELinuxOptions": {
  4363              "type": "object",
  4364              "properties": {
  4365                  "level": {
  4366                      "description": "Level is SELinux level label that applies to the container.\n+optional",
  4367                      "type": "string"
  4368                  },
  4369                  "role": {
  4370                      "description": "Role is a SELinux role label that applies to the container.\n+optional",
  4371                      "type": "string"
  4372                  },
  4373                  "type": {
  4374                      "description": "Type is a SELinux type label that applies to the container.\n+optional",
  4375                      "type": "string"
  4376                  },
  4377                  "user": {
  4378                      "description": "User is a SELinux user label that applies to the container.\n+optional",
  4379                      "type": "string"
  4380                  }
  4381              }
  4382          },
  4383          "v1.ScaleIOVolumeSource": {
  4384              "type": "object",
  4385              "properties": {
  4386                  "fsType": {
  4387                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\".\nDefault is \"xfs\".\n+optional",
  4388                      "type": "string"
  4389                  },
  4390                  "gateway": {
  4391                      "description": "gateway is the host address of the ScaleIO API Gateway.",
  4392                      "type": "string"
  4393                  },
  4394                  "protectionDomain": {
  4395                      "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.\n+optional",
  4396                      "type": "string"
  4397                  },
  4398                  "readOnly": {
  4399                      "description": "readOnly Defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  4400                      "type": "boolean"
  4401                  },
  4402                  "secretRef": {
  4403                      "description": "secretRef references to the secret for ScaleIO user and other\nsensitive information. If this is not provided, Login operation will fail.",
  4404                      "$ref": "#/definitions/v1.LocalObjectReference"
  4405                  },
  4406                  "sslEnabled": {
  4407                      "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false\n+optional",
  4408                      "type": "boolean"
  4409                  },
  4410                  "storageMode": {
  4411                      "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.\nDefault is ThinProvisioned.\n+optional",
  4412                      "type": "string"
  4413                  },
  4414                  "storagePool": {
  4415                      "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.\n+optional",
  4416                      "type": "string"
  4417                  },
  4418                  "system": {
  4419                      "description": "system is the name of the storage system as configured in ScaleIO.",
  4420                      "type": "string"
  4421                  },
  4422                  "volumeName": {
  4423                      "description": "volumeName is the name of a volume already created in the ScaleIO system\nthat is associated with this volume source.",
  4424                      "type": "string"
  4425                  }
  4426              }
  4427          },
  4428          "v1.SeccompProfile": {
  4429              "type": "object",
  4430              "properties": {
  4431                  "localhostProfile": {
  4432                      "description": "localhostProfile indicates a profile defined in a file on the node should be used.\nThe profile must be preconfigured on the node to work.\nMust be a descending path, relative to the kubelet's configured seccomp profile location.\nMust be set if type is \"Localhost\". Must NOT be set for any other type.\n+optional",
  4433                      "type": "string"
  4434                  },
  4435                  "type": {
  4436                      "description": "type indicates which kind of seccomp profile will be applied.\nValid options are:\n\nLocalhost - a profile defined in a file on the node should be used.\nRuntimeDefault - the container runtime default profile should be used.\nUnconfined - no profile should be applied.\n+unionDiscriminator",
  4437                      "type": "string"
  4438                  }
  4439              }
  4440          },
  4441          "v1.SecretEnvSource": {
  4442              "type": "object",
  4443              "properties": {
  4444                  "name": {
  4445                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  4446                      "type": "string"
  4447                  },
  4448                  "optional": {
  4449                      "description": "Specify whether the Secret must be defined\n+optional",
  4450                      "type": "boolean"
  4451                  }
  4452              }
  4453          },
  4454          "v1.SecretKeySelector": {
  4455              "type": "object",
  4456              "properties": {
  4457                  "key": {
  4458                      "description": "The key of the secret to select from.  Must be a valid secret key.",
  4459                      "type": "string"
  4460                  },
  4461                  "name": {
  4462                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  4463                      "type": "string"
  4464                  },
  4465                  "optional": {
  4466                      "description": "Specify whether the Secret or its key must be defined\n+optional",
  4467                      "type": "boolean"
  4468                  }
  4469              }
  4470          },
  4471          "v1.SecretProjection": {
  4472              "type": "object",
  4473              "properties": {
  4474                  "items": {
  4475                      "description": "items if unspecified, each key-value pair in the Data field of the referenced\nSecret will be projected into the volume as a file whose name is the\nkey and content is the value. If specified, the listed keys will be\nprojected into the specified paths, and unlisted keys will not be\npresent. If a key is specified which is not present in the Secret,\nthe volume setup will error unless it is marked optional. Paths must be\nrelative and may not contain the '..' path or start with '..'.\n+optional",
  4476                      "type": "array",
  4477                      "items": {
  4478                          "$ref": "#/definitions/v1.KeyToPath"
  4479                      }
  4480                  },
  4481                  "name": {
  4482                      "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?\n+optional",
  4483                      "type": "string"
  4484                  },
  4485                  "optional": {
  4486                      "description": "optional field specify whether the Secret or its key must be defined\n+optional",
  4487                      "type": "boolean"
  4488                  }
  4489              }
  4490          },
  4491          "v1.SecretVolumeSource": {
  4492              "type": "object",
  4493              "properties": {
  4494                  "defaultMode": {
  4495                      "description": "defaultMode is Optional: mode bits used to set permissions on created files by default.\nMust be an octal value between 0000 and 0777 or a decimal value between 0 and 511.\nYAML accepts both octal and decimal values, JSON requires decimal values\nfor mode bits. Defaults to 0644.\nDirectories within the path are not affected by this setting.\nThis might be in conflict with other options that affect the file\nmode, like fsGroup, and the result can be other mode bits set.\n+optional",
  4496                      "type": "integer"
  4497                  },
  4498                  "items": {
  4499                      "description": "items If unspecified, each key-value pair in the Data field of the referenced\nSecret will be projected into the volume as a file whose name is the\nkey and content is the value. If specified, the listed keys will be\nprojected into the specified paths, and unlisted keys will not be\npresent. If a key is specified which is not present in the Secret,\nthe volume setup will error unless it is marked optional. Paths must be\nrelative and may not contain the '..' path or start with '..'.\n+optional",
  4500                      "type": "array",
  4501                      "items": {
  4502                          "$ref": "#/definitions/v1.KeyToPath"
  4503                      }
  4504                  },
  4505                  "optional": {
  4506                      "description": "optional field specify whether the Secret or its keys must be defined\n+optional",
  4507                      "type": "boolean"
  4508                  },
  4509                  "secretName": {
  4510                      "description": "secretName is the name of the secret in the pod's namespace to use.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\n+optional",
  4511                      "type": "string"
  4512                  }
  4513              }
  4514          },
  4515          "v1.SecurityContext": {
  4516              "type": "object",
  4517              "properties": {
  4518                  "allowPrivilegeEscalation": {
  4519                      "description": "AllowPrivilegeEscalation controls whether a process can gain more\nprivileges than its parent process. This bool directly controls if\nthe no_new_privs flag will be set on the container process.\nAllowPrivilegeEscalation is true always when the container is:\n1) run as Privileged\n2) has CAP_SYS_ADMIN\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4520                      "type": "boolean"
  4521                  },
  4522                  "capabilities": {
  4523                      "description": "The capabilities to add/drop when running containers.\nDefaults to the default set of capabilities granted by the container runtime.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4524                      "$ref": "#/definitions/v1.Capabilities"
  4525                  },
  4526                  "privileged": {
  4527                      "description": "Run container in privileged mode.\nProcesses in privileged containers are essentially equivalent to root on the host.\nDefaults to false.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4528                      "type": "boolean"
  4529                  },
  4530                  "procMount": {
  4531                      "description": "procMount denotes the type of proc mount to use for the containers.\nThe default is DefaultProcMount which uses the container runtime defaults for\nreadonly paths and masked paths.\nThis requires the ProcMountType feature flag to be enabled.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4532                      "type": "string"
  4533                  },
  4534                  "readOnlyRootFilesystem": {
  4535                      "description": "Whether this container has a read-only root filesystem.\nDefault is false.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4536                      "type": "boolean"
  4537                  },
  4538                  "runAsGroup": {
  4539                      "description": "The GID to run the entrypoint of the container process.\nUses runtime default if unset.\nMay also be set in PodSecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4540                      "type": "integer"
  4541                  },
  4542                  "runAsNonRoot": {
  4543                      "description": "Indicates that the container must run as a non-root user.\nIf true, the Kubelet will validate the image at runtime to ensure that it\ndoes not run as UID 0 (root) and fail to start the container if it does.\nIf unset or false, no such validation will be performed.\nMay also be set in PodSecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.\n+optional",
  4544                      "type": "boolean"
  4545                  },
  4546                  "runAsUser": {
  4547                      "description": "The UID to run the entrypoint of the container process.\nDefaults to user specified in image metadata if unspecified.\nMay also be set in PodSecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4548                      "type": "integer"
  4549                  },
  4550                  "seLinuxOptions": {
  4551                      "description": "The SELinux context to be applied to the container.\nIf unspecified, the container runtime will allocate a random SELinux context for each\ncontainer.  May also be set in PodSecurityContext.  If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4552                      "$ref": "#/definitions/v1.SELinuxOptions"
  4553                  },
  4554                  "seccompProfile": {
  4555                      "description": "The seccomp options to use by this container. If seccomp options are\nprovided at both the pod \u0026 container level, the container options\noverride the pod options.\nNote that this field cannot be set when spec.os.name is windows.\n+optional",
  4556                      "$ref": "#/definitions/v1.SeccompProfile"
  4557                  },
  4558                  "windowsOptions": {
  4559                      "description": "The Windows specific settings applied to all containers.\nIf unspecified, the options from the PodSecurityContext will be used.\nIf set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.\nNote that this field cannot be set when spec.os.name is linux.\n+optional",
  4560                      "$ref": "#/definitions/v1.WindowsSecurityContextOptions"
  4561                  }
  4562              }
  4563          },
  4564          "v1.ServiceAccountTokenProjection": {
  4565              "type": "object",
  4566              "properties": {
  4567                  "audience": {
  4568                      "description": "audience is the intended audience of the token. A recipient of a token\nmust identify itself with an identifier specified in the audience of the\ntoken, and otherwise should reject the token. The audience defaults to the\nidentifier of the apiserver.\n+optional",
  4569                      "type": "string"
  4570                  },
  4571                  "expirationSeconds": {
  4572                      "description": "expirationSeconds is the requested duration of validity of the service\naccount token. As the token approaches expiration, the kubelet volume\nplugin will proactively rotate the service account token. The kubelet will\nstart trying to rotate the token if the token is older than 80 percent of\nits time to live or if the token is older than 24 hours.Defaults to 1 hour\nand must be at least 10 minutes.\n+optional",
  4573                      "type": "integer"
  4574                  },
  4575                  "path": {
  4576                      "description": "path is the path relative to the mount point of the file to project the\ntoken into.",
  4577                      "type": "string"
  4578                  }
  4579              }
  4580          },
  4581          "v1.StorageOSVolumeSource": {
  4582              "type": "object",
  4583              "properties": {
  4584                  "fsType": {
  4585                      "description": "fsType is the filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\n+optional",
  4586                      "type": "string"
  4587                  },
  4588                  "readOnly": {
  4589                      "description": "readOnly defaults to false (read/write). ReadOnly here will force\nthe ReadOnly setting in VolumeMounts.\n+optional",
  4590                      "type": "boolean"
  4591                  },
  4592                  "secretRef": {
  4593                      "description": "secretRef specifies the secret to use for obtaining the StorageOS API\ncredentials.  If not specified, default values will be attempted.\n+optional",
  4594                      "$ref": "#/definitions/v1.LocalObjectReference"
  4595                  },
  4596                  "volumeName": {
  4597                      "description": "volumeName is the human-readable name of the StorageOS volume.  Volume\nnames are only unique within a namespace.",
  4598                      "type": "string"
  4599                  },
  4600                  "volumeNamespace": {
  4601                      "description": "volumeNamespace specifies the scope of the volume within StorageOS.  If no\nnamespace is specified then the Pod's namespace will be used.  This allows the\nKubernetes name scoping to be mirrored within StorageOS for tighter integration.\nSet VolumeName to any name to override the default behaviour.\nSet to \"default\" if you are not using namespaces within StorageOS.\nNamespaces that do not pre-exist within StorageOS will be created.\n+optional",
  4602                      "type": "string"
  4603                  }
  4604              }
  4605          },
  4606          "v1.TCPSocketAction": {
  4607              "type": "object",
  4608              "properties": {
  4609                  "host": {
  4610                      "description": "Optional: Host name to connect to, defaults to the pod IP.\n+optional",
  4611                      "type": "string"
  4612                  },
  4613                  "port": {
  4614                      "description": "Number or name of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
  4615                      "$ref": "#/definitions/intstr.IntOrString"
  4616                  }
  4617              }
  4618          },
  4619          "v1.TypedLocalObjectReference": {
  4620              "type": "object",
  4621              "properties": {
  4622                  "apiGroup": {
  4623                      "description": "APIGroup is the group for the resource being referenced.\nIf APIGroup is not specified, the specified Kind must be in the core API group.\nFor any other third-party types, APIGroup is required.\n+optional",
  4624                      "type": "string"
  4625                  },
  4626                  "kind": {
  4627                      "description": "Kind is the type of resource being referenced",
  4628                      "type": "string"
  4629                  },
  4630                  "name": {
  4631                      "description": "Name is the name of resource being referenced",
  4632                      "type": "string"
  4633                  }
  4634              }
  4635          },
  4636          "v1.TypedObjectReference": {
  4637              "type": "object",
  4638              "properties": {
  4639                  "apiGroup": {
  4640                      "description": "APIGroup is the group for the resource being referenced.\nIf APIGroup is not specified, the specified Kind must be in the core API group.\nFor any other third-party types, APIGroup is required.\n+optional",
  4641                      "type": "string"
  4642                  },
  4643                  "kind": {
  4644                      "description": "Kind is the type of resource being referenced",
  4645                      "type": "string"
  4646                  },
  4647                  "name": {
  4648                      "description": "Name is the name of resource being referenced",
  4649                      "type": "string"
  4650                  },
  4651                  "namespace": {
  4652                      "description": "Namespace is the namespace of resource being referenced\nNote that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.\n(Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.\n+featureGate=CrossNamespaceVolumeDataSource\n+optional",
  4653                      "type": "string"
  4654                  }
  4655              }
  4656          },
  4657          "v1.Volume": {
  4658              "type": "object",
  4659              "properties": {
  4660                  "awsElasticBlockStore": {
  4661                      "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a\nkubelet's host machine and then exposed to the pod.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore\n+optional",
  4662                      "$ref": "#/definitions/v1.AWSElasticBlockStoreVolumeSource"
  4663                  },
  4664                  "azureDisk": {
  4665                      "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.\n+optional",
  4666                      "$ref": "#/definitions/v1.AzureDiskVolumeSource"
  4667                  },
  4668                  "azureFile": {
  4669                      "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod.\n+optional",
  4670                      "$ref": "#/definitions/v1.AzureFileVolumeSource"
  4671                  },
  4672                  "cephfs": {
  4673                      "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime\n+optional",
  4674                      "$ref": "#/definitions/v1.CephFSVolumeSource"
  4675                  },
  4676                  "cinder": {
  4677                      "description": "cinder represents a cinder volume attached and mounted on kubelets host machine.\nMore info: https://examples.k8s.io/mysql-cinder-pd/README.md\n+optional",
  4678                      "$ref": "#/definitions/v1.CinderVolumeSource"
  4679                  },
  4680                  "configMap": {
  4681                      "description": "configMap represents a configMap that should populate this volume\n+optional",
  4682                      "$ref": "#/definitions/v1.ConfigMapVolumeSource"
  4683                  },
  4684                  "csi": {
  4685                      "description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature).\n+optional",
  4686                      "$ref": "#/definitions/v1.CSIVolumeSource"
  4687                  },
  4688                  "downwardAPI": {
  4689                      "description": "downwardAPI represents downward API about the pod that should populate this volume\n+optional",
  4690                      "$ref": "#/definitions/v1.DownwardAPIVolumeSource"
  4691                  },
  4692                  "emptyDir": {
  4693                      "description": "emptyDir represents a temporary directory that shares a pod's lifetime.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir\n+optional",
  4694                      "$ref": "#/definitions/v1.EmptyDirVolumeSource"
  4695                  },
  4696                  "ephemeral": {
  4697                      "description": "ephemeral represents a volume that is handled by a cluster storage driver.\nThe volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts,\nand deleted when the pod is removed.\n\nUse this if:\na) the volume is only needed while the pod runs,\nb) features of normal volumes like restoring from snapshot or capacity\n   tracking are needed,\nc) the storage driver is specified through a storage class, and\nd) the storage driver supports dynamic volume provisioning through\n   a PersistentVolumeClaim (see EphemeralVolumeSource for more\n   information on the connection between this volume type\n   and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific\nAPIs for volumes that persist for longer than the lifecycle\nof an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to\nbe used that way - see the documentation of the driver for\nmore information.\n\nA pod can use both types of ephemeral volumes and\npersistent volumes at the same time.\n\n+optional",
  4698                      "$ref": "#/definitions/v1.EphemeralVolumeSource"
  4699                  },
  4700                  "fc": {
  4701                      "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.\n+optional",
  4702                      "$ref": "#/definitions/v1.FCVolumeSource"
  4703                  },
  4704                  "flexVolume": {
  4705                      "description": "flexVolume represents a generic volume resource that is\nprovisioned/attached using an exec based plugin.\n+optional",
  4706                      "$ref": "#/definitions/v1.FlexVolumeSource"
  4707                  },
  4708                  "flocker": {
  4709                      "description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running\n+optional",
  4710                      "$ref": "#/definitions/v1.FlockerVolumeSource"
  4711                  },
  4712                  "gcePersistentDisk": {
  4713                      "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a\nkubelet's host machine and then exposed to the pod.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk\n+optional",
  4714                      "$ref": "#/definitions/v1.GCEPersistentDiskVolumeSource"
  4715                  },
  4716                  "gitRepo": {
  4717                      "description": "gitRepo represents a git repository at a particular revision.\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an\nEmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir\ninto the Pod's container.\n+optional",
  4718                      "$ref": "#/definitions/v1.GitRepoVolumeSource"
  4719                  },
  4720                  "glusterfs": {
  4721                      "description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.\nMore info: https://examples.k8s.io/volumes/glusterfs/README.md\n+optional",
  4722                      "$ref": "#/definitions/v1.GlusterfsVolumeSource"
  4723                  },
  4724                  "hostPath": {
  4725                      "description": "hostPath represents a pre-existing file or directory on the host\nmachine that is directly exposed to the container. This is generally\nused for system agents or other privileged things that are allowed\nto see the host machine. Most containers will NOT need this.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath\n---\nTODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not\nmount host directories as read/write.\n+optional",
  4726                      "$ref": "#/definitions/v1.HostPathVolumeSource"
  4727                  },
  4728                  "iscsi": {
  4729                      "description": "iscsi represents an ISCSI Disk resource that is attached to a\nkubelet's host machine and then exposed to the pod.\nMore info: https://examples.k8s.io/volumes/iscsi/README.md\n+optional",
  4730                      "$ref": "#/definitions/v1.ISCSIVolumeSource"
  4731                  },
  4732                  "name": {
  4733                      "description": "name of the volume.\nMust be a DNS_LABEL and unique within the pod.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
  4734                      "type": "string"
  4735                  },
  4736                  "nfs": {
  4737                      "description": "nfs represents an NFS mount on the host that shares a pod's lifetime\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#nfs\n+optional",
  4738                      "$ref": "#/definitions/v1.NFSVolumeSource"
  4739                  },
  4740                  "persistentVolumeClaim": {
  4741                      "description": "persistentVolumeClaimVolumeSource represents a reference to a\nPersistentVolumeClaim in the same namespace.\nMore info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims\n+optional",
  4742                      "$ref": "#/definitions/v1.PersistentVolumeClaimVolumeSource"
  4743                  },
  4744                  "photonPersistentDisk": {
  4745                      "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine",
  4746                      "$ref": "#/definitions/v1.PhotonPersistentDiskVolumeSource"
  4747                  },
  4748                  "portworxVolume": {
  4749                      "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine\n+optional",
  4750                      "$ref": "#/definitions/v1.PortworxVolumeSource"
  4751                  },
  4752                  "projected": {
  4753                      "description": "projected items for all in one resources secrets, configmaps, and downward API",
  4754                      "$ref": "#/definitions/v1.ProjectedVolumeSource"
  4755                  },
  4756                  "quobyte": {
  4757                      "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime\n+optional",
  4758                      "$ref": "#/definitions/v1.QuobyteVolumeSource"
  4759                  },
  4760                  "rbd": {
  4761                      "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.\nMore info: https://examples.k8s.io/volumes/rbd/README.md\n+optional",
  4762                      "$ref": "#/definitions/v1.RBDVolumeSource"
  4763                  },
  4764                  "scaleIO": {
  4765                      "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.\n+optional",
  4766                      "$ref": "#/definitions/v1.ScaleIOVolumeSource"
  4767                  },
  4768                  "secret": {
  4769                      "description": "secret represents a secret that should populate this volume.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#secret\n+optional",
  4770                      "$ref": "#/definitions/v1.SecretVolumeSource"
  4771                  },
  4772                  "storageos": {
  4773                      "description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.\n+optional",
  4774                      "$ref": "#/definitions/v1.StorageOSVolumeSource"
  4775                  },
  4776                  "vsphereVolume": {
  4777                      "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine\n+optional",
  4778                      "$ref": "#/definitions/v1.VsphereVirtualDiskVolumeSource"
  4779                  }
  4780              }
  4781          },
  4782          "v1.VolumeDevice": {
  4783              "type": "object",
  4784              "properties": {
  4785                  "devicePath": {
  4786                      "description": "devicePath is the path inside of the container that the device will be mapped to.",
  4787                      "type": "string"
  4788                  },
  4789                  "name": {
  4790                      "description": "name must match the name of a persistentVolumeClaim in the pod",
  4791                      "type": "string"
  4792                  }
  4793              }
  4794          },
  4795          "v1.VolumeMount": {
  4796              "type": "object",
  4797              "properties": {
  4798                  "mountPath": {
  4799                      "description": "Path within the container at which the volume should be mounted.  Must\nnot contain ':'.",
  4800                      "type": "string"
  4801                  },
  4802                  "mountPropagation": {
  4803                      "description": "mountPropagation determines how mounts are propagated from the host\nto container and the other way around.\nWhen not set, MountPropagationNone is used.\nThis field is beta in 1.10.\n+optional",
  4804                      "type": "string"
  4805                  },
  4806                  "name": {
  4807                      "description": "This must match the Name of a Volume.",
  4808                      "type": "string"
  4809                  },
  4810                  "readOnly": {
  4811                      "description": "Mounted read-only if true, read-write otherwise (false or unspecified).\nDefaults to false.\n+optional",
  4812                      "type": "boolean"
  4813                  },
  4814                  "subPath": {
  4815                      "description": "Path within the volume from which the container's volume should be mounted.\nDefaults to \"\" (volume's root).\n+optional",
  4816                      "type": "string"
  4817                  },
  4818                  "subPathExpr": {
  4819                      "description": "Expanded path within the volume from which the container's volume should be mounted.\nBehaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment.\nDefaults to \"\" (volume's root).\nSubPathExpr and SubPath are mutually exclusive.\n+optional",
  4820                      "type": "string"
  4821                  }
  4822              }
  4823          },
  4824          "v1.VolumeProjection": {
  4825              "type": "object",
  4826              "properties": {
  4827                  "configMap": {
  4828                      "description": "configMap information about the configMap data to project\n+optional",
  4829                      "$ref": "#/definitions/v1.ConfigMapProjection"
  4830                  },
  4831                  "downwardAPI": {
  4832                      "description": "downwardAPI information about the downwardAPI data to project\n+optional",
  4833                      "$ref": "#/definitions/v1.DownwardAPIProjection"
  4834                  },
  4835                  "secret": {
  4836                      "description": "secret information about the secret data to project\n+optional",
  4837                      "$ref": "#/definitions/v1.SecretProjection"
  4838                  },
  4839                  "serviceAccountToken": {
  4840                      "description": "serviceAccountToken is information about the serviceAccountToken data to project\n+optional",
  4841                      "$ref": "#/definitions/v1.ServiceAccountTokenProjection"
  4842                  }
  4843              }
  4844          },
  4845          "v1.VsphereVirtualDiskVolumeSource": {
  4846              "type": "object",
  4847              "properties": {
  4848                  "fsType": {
  4849                      "description": "fsType is filesystem type to mount.\nMust be a filesystem type supported by the host operating system.\nEx. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.\n+optional",
  4850                      "type": "string"
  4851                  },
  4852                  "storagePolicyID": {
  4853                      "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.\n+optional",
  4854                      "type": "string"
  4855                  },
  4856                  "storagePolicyName": {
  4857                      "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.\n+optional",
  4858                      "type": "string"
  4859                  },
  4860                  "volumePath": {
  4861                      "description": "volumePath is the path that identifies vSphere volume vmdk",
  4862                      "type": "string"
  4863                  }
  4864              }
  4865          },
  4866          "v1.WindowsSecurityContextOptions": {
  4867              "type": "object",
  4868              "properties": {
  4869                  "gmsaCredentialSpec": {
  4870                      "description": "GMSACredentialSpec is where the GMSA admission webhook\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\nGMSA credential spec named by the GMSACredentialSpecName field.\n+optional",
  4871                      "type": "string"
  4872                  },
  4873                  "gmsaCredentialSpecName": {
  4874                      "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.\n+optional",
  4875                      "type": "string"
  4876                  },
  4877                  "hostProcess": {
  4878                      "description": "HostProcess determines if a container should be run as a 'Host Process' container.\nAll of a Pod's containers must have the same effective HostProcess value\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\nIn addition, if HostProcess is true then HostNetwork must also be set to true.\n+optional",
  4879                      "type": "boolean"
  4880                  },
  4881                  "runAsUserName": {
  4882                      "description": "The UserName in Windows to run the entrypoint of the container process.\nDefaults to the user specified in image metadata if unspecified.\nMay also be set in PodSecurityContext. If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence.\n+optional",
  4883                      "type": "string"
  4884                  }
  4885              }
  4886          },
  4887          "v1alpha1.AWSChaosSpec": {
  4888              "type": "object",
  4889              "properties": {
  4890                  "action": {
  4891                      "description": "Action defines the specific aws chaos action.\nSupported action: ec2-stop / ec2-restart / detach-volume\nDefault action: ec2-stop\n+kubebuilder:validation:Enum=ec2-stop;ec2-restart;detach-volume",
  4892                      "type": "string"
  4893                  },
  4894                  "awsRegion": {
  4895                      "description": "AWSRegion defines the region of aws.",
  4896                      "type": "string"
  4897                  },
  4898                  "deviceName": {
  4899                      "description": "DeviceName indicates the name of the device.\nNeeded in detach-volume.\n+ui:form:when=action=='detach-volume'\n+optional",
  4900                      "type": "string"
  4901                  },
  4902                  "duration": {
  4903                      "description": "Duration represents the duration of the chaos action.\n+optional",
  4904                      "type": "string"
  4905                  },
  4906                  "ec2Instance": {
  4907                      "description": "Ec2Instance indicates the ID of the ec2 instance.",
  4908                      "type": "string"
  4909                  },
  4910                  "endpoint": {
  4911                      "description": "Endpoint indicates the endpoint of the aws server. Just used it in test now.\n+ui:form:ignore\n+optional",
  4912                      "type": "string"
  4913                  },
  4914                  "remoteCluster": {
  4915                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  4916                      "type": "string"
  4917                  },
  4918                  "secretName": {
  4919                      "description": "SecretName defines the name of kubernetes secret.\n+optional",
  4920                      "type": "string"
  4921                  },
  4922                  "volumeID": {
  4923                      "description": "EbsVolume indicates the ID of the EBS volume.\nNeeded in detach-volume.\n+ui:form:when=action=='detach-volume'\n+optional",
  4924                      "type": "string"
  4925                  }
  4926              }
  4927          },
  4928          "v1alpha1.AttrOverrideSpec": {
  4929              "type": "object",
  4930              "properties": {
  4931                  "atime": {
  4932                      "description": "+optional",
  4933                      "$ref": "#/definitions/v1alpha1.Timespec"
  4934                  },
  4935                  "blocks": {
  4936                      "description": "+optional",
  4937                      "type": "integer"
  4938                  },
  4939                  "ctime": {
  4940                      "description": "+optional",
  4941                      "$ref": "#/definitions/v1alpha1.Timespec"
  4942                  },
  4943                  "gid": {
  4944                      "description": "+optional",
  4945                      "type": "integer"
  4946                  },
  4947                  "ino": {
  4948                      "description": "+optional",
  4949                      "type": "integer"
  4950                  },
  4951                  "kind": {
  4952                      "description": "+optional",
  4953                      "type": "string"
  4954                  },
  4955                  "mtime": {
  4956                      "description": "+optional",
  4957                      "$ref": "#/definitions/v1alpha1.Timespec"
  4958                  },
  4959                  "nlink": {
  4960                      "description": "+optional",
  4961                      "type": "integer"
  4962                  },
  4963                  "perm": {
  4964                      "description": "+optional",
  4965                      "type": "integer"
  4966                  },
  4967                  "rdev": {
  4968                      "description": "+optional",
  4969                      "type": "integer"
  4970                  },
  4971                  "size": {
  4972                      "description": "+optional",
  4973                      "type": "integer"
  4974                  },
  4975                  "uid": {
  4976                      "description": "+optional",
  4977                      "type": "integer"
  4978                  }
  4979              }
  4980          },
  4981          "v1alpha1.AzureChaosSpec": {
  4982              "type": "object",
  4983              "properties": {
  4984                  "action": {
  4985                      "description": "Action defines the specific azure chaos action.\nSupported action: vm-stop / vm-restart / disk-detach\nDefault action: vm-stop\n+kubebuilder:validation:Enum=vm-stop;vm-restart;disk-detach",
  4986                      "type": "string"
  4987                  },
  4988                  "diskName": {
  4989                      "description": "DiskName indicates the name of the disk.\nNeeded in disk-detach.\n+optional",
  4990                      "type": "string"
  4991                  },
  4992                  "duration": {
  4993                      "description": "Duration represents the duration of the chaos action.\n+optional",
  4994                      "type": "string"
  4995                  },
  4996                  "lun": {
  4997                      "description": "LUN indicates the Logical Unit Number of the data disk.\nNeeded in disk-detach.\n+optional",
  4998                      "type": "integer"
  4999                  },
  5000                  "remoteCluster": {
  5001                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5002                      "type": "string"
  5003                  },
  5004                  "resourceGroupName": {
  5005                      "description": "ResourceGroupName defines the name of ResourceGroup",
  5006                      "type": "string"
  5007                  },
  5008                  "secretName": {
  5009                      "description": "SecretName defines the name of kubernetes secret. It is used for Azure credentials.\n+optional",
  5010                      "type": "string"
  5011                  },
  5012                  "subscriptionID": {
  5013                      "description": "SubscriptionID defines the id of Azure subscription.",
  5014                      "type": "string"
  5015                  },
  5016                  "vmName": {
  5017                      "description": "VMName defines the name of Virtual Machine",
  5018                      "type": "string"
  5019                  }
  5020              }
  5021          },
  5022          "v1alpha1.BandwidthSpec": {
  5023              "type": "object",
  5024              "properties": {
  5025                  "buffer": {
  5026                      "description": "Buffer is the maximum amount of bytes that tokens can be available for instantaneously.\n+kubebuilder:validation:Minimum=1",
  5027                      "type": "integer"
  5028                  },
  5029                  "limit": {
  5030                      "description": "Limit is the number of bytes that can be queued waiting for tokens to become available.\n+kubebuilder:validation:Minimum=1",
  5031                      "type": "integer"
  5032                  },
  5033                  "minburst": {
  5034                      "description": "Minburst specifies the size of the peakrate bucket. For perfect\naccuracy, should be set to the MTU of the interface.  If a\npeakrate is needed, but some burstiness is acceptable, this\nsize can be raised. A 3000 byte minburst allows around 3mbit/s\nof peakrate, given 1000 byte packets.\n+optional\n+kubebuilder:validation:Minimum=0",
  5035                      "type": "integer"
  5036                  },
  5037                  "peakrate": {
  5038                      "description": "Peakrate is the maximum depletion rate of the bucket.\nThe peakrate does not need to be set, it is only necessary\nif perfect millisecond timescale shaping is required.\n+optional\n+kubebuilder:validation:Minimum=0",
  5039                      "type": "integer"
  5040                  },
  5041                  "rate": {
  5042                      "description": "Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.",
  5043                      "type": "string"
  5044                  }
  5045              }
  5046          },
  5047          "v1alpha1.BlockChaosSpec": {
  5048              "type": "object",
  5049              "properties": {
  5050                  "action": {
  5051                      "description": "Action defines the specific block chaos action.\nSupported action: delay\n+kubebuilder:validation:Enum=delay",
  5052                      "type": "string"
  5053                  },
  5054                  "containerNames": {
  5055                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  5056                      "type": "array",
  5057                      "items": {
  5058                          "type": "string"
  5059                      }
  5060                  },
  5061                  "delay": {
  5062                      "description": "Delay defines the delay distribution.\n+optional",
  5063                      "$ref": "#/definitions/v1alpha1.BlockDelaySpec"
  5064                  },
  5065                  "duration": {
  5066                      "description": "Duration represents the duration of the chaos action.\n+optional",
  5067                      "type": "string"
  5068                  },
  5069                  "mode": {
  5070                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  5071                      "type": "string"
  5072                  },
  5073                  "remoteCluster": {
  5074                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5075                      "type": "string"
  5076                  },
  5077                  "selector": {
  5078                      "description": "Selector is used to select pods that are used to inject chaos action.",
  5079                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  5080                  },
  5081                  "value": {
  5082                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  5083                      "type": "string"
  5084                  },
  5085                  "volumeName": {
  5086                      "type": "string"
  5087                  }
  5088              }
  5089          },
  5090          "v1alpha1.BlockDelaySpec": {
  5091              "type": "object",
  5092              "properties": {
  5093                  "correlation": {
  5094                      "description": "+optional",
  5095                      "type": "string",
  5096                      "default": "0"
  5097                  },
  5098                  "jitter": {
  5099                      "description": "+optional",
  5100                      "type": "string",
  5101                      "default": "0ms"
  5102                  },
  5103                  "latency": {
  5104                      "description": "Latency defines the latency of every io request.",
  5105                      "type": "string"
  5106                  }
  5107              }
  5108          },
  5109          "v1alpha1.CPUStressor": {
  5110              "type": "object",
  5111              "properties": {
  5112                  "load": {
  5113                      "description": "Load specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100\nis full loading.\n+kubebuilder:validation:Minimum=0\n+kubebuilder:validation:Maximum=100\n+optional",
  5114                      "type": "integer"
  5115                  },
  5116                  "options": {
  5117                      "description": "extend stress-ng options\n+optional",
  5118                      "type": "array",
  5119                      "items": {
  5120                          "type": "string"
  5121                      }
  5122                  },
  5123                  "workers": {
  5124                      "description": "Workers specifies N workers to apply the stressor.\nMaximum 8192 workers can run by stress-ng\n+kubebuilder:validation:Maximum=8192",
  5125                      "type": "integer"
  5126                  }
  5127              }
  5128          },
  5129          "v1alpha1.ChaosOnlyScheduleSpec": {
  5130              "type": "object",
  5131              "properties": {
  5132                  "awsChaos": {
  5133                      "description": "+optional",
  5134                      "$ref": "#/definitions/v1alpha1.AWSChaosSpec"
  5135                  },
  5136                  "azureChaos": {
  5137                      "description": "+optional",
  5138                      "$ref": "#/definitions/v1alpha1.AzureChaosSpec"
  5139                  },
  5140                  "blockChaos": {
  5141                      "description": "+optional",
  5142                      "$ref": "#/definitions/v1alpha1.BlockChaosSpec"
  5143                  },
  5144                  "concurrencyPolicy": {
  5145                      "description": "+optional\n+kubebuilder:validation:Enum=Forbid;Allow",
  5146                      "type": "string"
  5147                  },
  5148                  "dnsChaos": {
  5149                      "description": "+optional",
  5150                      "$ref": "#/definitions/v1alpha1.DNSChaosSpec"
  5151                  },
  5152                  "gcpChaos": {
  5153                      "description": "+optional",
  5154                      "$ref": "#/definitions/v1alpha1.GCPChaosSpec"
  5155                  },
  5156                  "historyLimit": {
  5157                      "description": "+optional\n+kubebuilder:validation:Minimum=1",
  5158                      "type": "integer"
  5159                  },
  5160                  "httpChaos": {
  5161                      "description": "+optional",
  5162                      "$ref": "#/definitions/v1alpha1.HTTPChaosSpec"
  5163                  },
  5164                  "ioChaos": {
  5165                      "description": "+optional",
  5166                      "$ref": "#/definitions/v1alpha1.IOChaosSpec"
  5167                  },
  5168                  "jvmChaos": {
  5169                      "description": "+optional",
  5170                      "$ref": "#/definitions/v1alpha1.JVMChaosSpec"
  5171                  },
  5172                  "kernelChaos": {
  5173                      "description": "+optional",
  5174                      "$ref": "#/definitions/v1alpha1.KernelChaosSpec"
  5175                  },
  5176                  "networkChaos": {
  5177                      "description": "+optional",
  5178                      "$ref": "#/definitions/v1alpha1.NetworkChaosSpec"
  5179                  },
  5180                  "physicalmachineChaos": {
  5181                      "description": "+optional",
  5182                      "$ref": "#/definitions/v1alpha1.PhysicalMachineChaosSpec"
  5183                  },
  5184                  "podChaos": {
  5185                      "description": "+optional",
  5186                      "$ref": "#/definitions/v1alpha1.PodChaosSpec"
  5187                  },
  5188                  "schedule": {
  5189                      "type": "string"
  5190                  },
  5191                  "startingDeadlineSeconds": {
  5192                      "description": "+optional\n+nullable\n+kubebuilder:validation:Minimum=0",
  5193                      "type": "integer"
  5194                  },
  5195                  "stressChaos": {
  5196                      "description": "+optional",
  5197                      "$ref": "#/definitions/v1alpha1.StressChaosSpec"
  5198                  },
  5199                  "timeChaos": {
  5200                      "description": "+optional",
  5201                      "$ref": "#/definitions/v1alpha1.TimeChaosSpec"
  5202                  },
  5203                  "type": {
  5204                      "type": "string"
  5205                  }
  5206              }
  5207          },
  5208          "v1alpha1.ClockSpec": {
  5209              "type": "object",
  5210              "properties": {
  5211                  "clock-ids-slice": {
  5212                      "description": "the identifier of the particular clock on which to act.\nMore clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime.\nMuti clock ids should be split with \",\"",
  5213                      "type": "string"
  5214                  },
  5215                  "pid": {
  5216                      "description": "the pid of target program.",
  5217                      "type": "integer"
  5218                  },
  5219                  "time-offset": {
  5220                      "description": "specifies the length of time offset.",
  5221                      "type": "string"
  5222                  }
  5223              }
  5224          },
  5225          "v1alpha1.ConditionalBranch": {
  5226              "type": "object",
  5227              "properties": {
  5228                  "expression": {
  5229                      "description": "Expression is the expression for this conditional branch, expected type of result is boolean. If expression is empty, this branch will always be selected/the template will be spawned.\n+optional",
  5230                      "type": "string"
  5231                  },
  5232                  "target": {
  5233                      "description": "Target is the name of other template, if expression is evaluated as true, this template will be spawned.",
  5234                      "type": "string"
  5235                  }
  5236              }
  5237          },
  5238          "v1alpha1.CorruptSpec": {
  5239              "type": "object",
  5240              "properties": {
  5241                  "correlation": {
  5242                      "description": "+optional",
  5243                      "type": "string",
  5244                      "default": "0"
  5245                  },
  5246                  "corrupt": {
  5247                      "type": "string"
  5248                  }
  5249              }
  5250          },
  5251          "v1alpha1.DNSChaosSpec": {
  5252              "type": "object",
  5253              "properties": {
  5254                  "action": {
  5255                      "description": "Action defines the specific DNS chaos action.\nSupported action: error, random\nDefault action: error\n+kubebuilder:validation:Enum=error;random",
  5256                      "type": "string"
  5257                  },
  5258                  "containerNames": {
  5259                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  5260                      "type": "array",
  5261                      "items": {
  5262                          "type": "string"
  5263                      }
  5264                  },
  5265                  "duration": {
  5266                      "description": "Duration represents the duration of the chaos action",
  5267                      "type": "string"
  5268                  },
  5269                  "mode": {
  5270                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  5271                      "type": "string"
  5272                  },
  5273                  "patterns": {
  5274                      "description": "Choose which domain names to take effect, support the placeholder ? and wildcard *, or the Specified domain name.\nNote:\n     1. The wildcard * must be at the end of the string. For example, chaos-*.org is invalid.\n     2. if the patterns is empty, will take effect on all the domain names.\nFor example:\n\t\tThe value is [\"google.com\", \"github.*\", \"chaos-mes?.org\"],\n\t\twill take effect on \"google.com\", \"github.com\" and \"chaos-mesh.org\"\n+optional",
  5275                      "type": "array",
  5276                      "items": {
  5277                          "type": "string"
  5278                      }
  5279                  },
  5280                  "remoteCluster": {
  5281                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5282                      "type": "string"
  5283                  },
  5284                  "selector": {
  5285                      "description": "Selector is used to select pods that are used to inject chaos action.",
  5286                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  5287                  },
  5288                  "value": {
  5289                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  5290                      "type": "string"
  5291                  }
  5292              }
  5293          },
  5294          "v1alpha1.DelaySpec": {
  5295              "type": "object",
  5296              "properties": {
  5297                  "correlation": {
  5298                      "description": "+optional",
  5299                      "type": "string",
  5300                      "default": "0"
  5301                  },
  5302                  "jitter": {
  5303                      "description": "+optional",
  5304                      "type": "string",
  5305                      "default": "0ms"
  5306                  },
  5307                  "latency": {
  5308                      "type": "string"
  5309                  },
  5310                  "reorder": {
  5311                      "description": "+optional",
  5312                      "$ref": "#/definitions/v1alpha1.ReorderSpec"
  5313                  }
  5314              }
  5315          },
  5316          "v1alpha1.DiskFillSpec": {
  5317              "type": "object",
  5318              "properties": {
  5319                  "fill-by-fallocate": {
  5320                      "description": "fill disk by fallocate",
  5321                      "type": "boolean"
  5322                  },
  5323                  "path": {
  5324                      "description": "specifies the location to fill data in. if path not provided,\npayload will read/write from/into a temp file, temp file will be deleted after writing",
  5325                      "type": "string"
  5326                  },
  5327                  "size": {
  5328                      "description": "specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000,\nK=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB",
  5329                      "type": "string"
  5330                  }
  5331              }
  5332          },
  5333          "v1alpha1.DiskPayloadSpec": {
  5334              "type": "object",
  5335              "properties": {
  5336                  "path": {
  5337                      "description": "specifies the location to fill data in. if path not provided,\npayload will read/write from/into a temp file, temp file will be deleted after writing",
  5338                      "type": "string"
  5339                  },
  5340                  "payload-process-num": {
  5341                      "description": "specifies the number of process work on writing, default 1, only 1-255 is valid value",
  5342                      "type": "integer"
  5343                  },
  5344                  "size": {
  5345                      "description": "specifies how many units of data will write into the file path. support unit: c=1, w=2, b=512, kB=1000,\nK=1024, MB=1000*1000, M=1024*1024, GB=1000*1000*1000, G=1024*1024*1024 BYTES. example : 1M | 512kB",
  5346                      "type": "string"
  5347                  }
  5348              }
  5349          },
  5350          "v1alpha1.DuplicateSpec": {
  5351              "type": "object",
  5352              "properties": {
  5353                  "correlation": {
  5354                      "description": "+optional",
  5355                      "type": "string",
  5356                      "default": "0"
  5357                  },
  5358                  "duplicate": {
  5359                      "type": "string"
  5360                  }
  5361              }
  5362          },
  5363          "v1alpha1.FailKernRequest": {
  5364              "type": "object",
  5365              "properties": {
  5366                  "callchain": {
  5367                      "description": "Callchain indicate a special call chain, such as:\n    ext4_mount\n      -\u003e mount_subtree\n         -\u003e ...\n            -\u003e should_failslab\nWith an optional set of predicates and an optional set of\nparameters, which used with predicates. You can read call chan\nand predicate examples from https://github.com/chaos-mesh/bpfki/tree/develop/examples\nto learn more.\nIf no special call chain, just keep Callchain empty, which means it will fail at any call chain\nwith slab alloc (eg: kmalloc).",
  5368                      "type": "array",
  5369                      "items": {
  5370                          "$ref": "#/definitions/v1alpha1.Frame"
  5371                      }
  5372                  },
  5373                  "failtype": {
  5374                      "description": "FailType indicates what to fail, can be set to '0' / '1' / '2'\nIf ` + "`" + `0` + "`" + `, indicates slab to fail (should_failslab)\nIf ` + "`" + `1` + "`" + `, indicates alloc_page to fail (should_fail_alloc_page)\nIf ` + "`" + `2` + "`" + `, indicates bio to fail (should_fail_bio)\nYou can read:\n  1. https://www.kernel.org/doc/html/latest/fault-injection/fault-injection.html\n  2. http://github.com/iovisor/bcc/blob/master/tools/inject_example.txt\nto learn more\n+kubebuilder:validation:Maximum=2\n+kubebuilder:validation:Minimum=0",
  5375                      "type": "integer"
  5376                  },
  5377                  "headers": {
  5378                      "description": "Headers indicates the appropriate kernel headers you need.\nEg: \"linux/mmzone.h\", \"linux/blkdev.h\" and so on",
  5379                      "type": "array",
  5380                      "items": {
  5381                          "type": "string"
  5382                      }
  5383                  },
  5384                  "probability": {
  5385                      "description": "Probability indicates the fails with probability.\nIf you want 1%, please set this field with 1.\n+kubebuilder:validation:Minimum=0\n+kubebuilder:validation:Maximum=100",
  5386                      "type": "integer"
  5387                  },
  5388                  "times": {
  5389                      "description": "Times indicates the max times of fails.\n+kubebuilder:validation:Minimum=0",
  5390                      "type": "integer"
  5391                  }
  5392              }
  5393          },
  5394          "v1alpha1.FileAppendSpec": {
  5395              "type": "object",
  5396              "properties": {
  5397                  "count": {
  5398                      "description": "Count is the number of times to append the data.",
  5399                      "type": "integer"
  5400                  },
  5401                  "data": {
  5402                      "description": "Data is the data for append.",
  5403                      "type": "string"
  5404                  },
  5405                  "file-name": {
  5406                      "description": "FileName is the name of the file to be created, modified, deleted, renamed, or appended.",
  5407                      "type": "string"
  5408                  }
  5409              }
  5410          },
  5411          "v1alpha1.FileCreateSpec": {
  5412              "type": "object",
  5413              "properties": {
  5414                  "dir-name": {
  5415                      "description": "DirName is the directory name to create or delete.",
  5416                      "type": "string"
  5417                  },
  5418                  "file-name": {
  5419                      "description": "FileName is the name of the file to be created, modified, deleted, renamed, or appended.",
  5420                      "type": "string"
  5421                  }
  5422              }
  5423          },
  5424          "v1alpha1.FileDeleteSpec": {
  5425              "type": "object",
  5426              "properties": {
  5427                  "dir-name": {
  5428                      "description": "DirName is the directory name to create or delete.",
  5429                      "type": "string"
  5430                  },
  5431                  "file-name": {
  5432                      "description": "FileName is the name of the file to be created, modified, deleted, renamed, or appended.",
  5433                      "type": "string"
  5434                  }
  5435              }
  5436          },
  5437          "v1alpha1.FileModifyPrivilegeSpec": {
  5438              "type": "object",
  5439              "properties": {
  5440                  "file-name": {
  5441                      "description": "FileName is the name of the file to be created, modified, deleted, renamed, or appended.",
  5442                      "type": "string"
  5443                  },
  5444                  "privilege": {
  5445                      "description": "Privilege is the file privilege to be set.",
  5446                      "type": "integer"
  5447                  }
  5448              }
  5449          },
  5450          "v1alpha1.FileRenameSpec": {
  5451              "type": "object",
  5452              "properties": {
  5453                  "dest-file": {
  5454                      "description": "DestFile is the name to be renamed.",
  5455                      "type": "string"
  5456                  },
  5457                  "source-file": {
  5458                      "description": "SourceFile is the name need to be renamed.",
  5459                      "type": "string"
  5460                  }
  5461              }
  5462          },
  5463          "v1alpha1.FileReplaceSpec": {
  5464              "type": "object",
  5465              "properties": {
  5466                  "dest-string": {
  5467                      "description": "DestStr is the destination string of the file.",
  5468                      "type": "string"
  5469                  },
  5470                  "file-name": {
  5471                      "description": "FileName is the name of the file to be created, modified, deleted, renamed, or appended.",
  5472                      "type": "string"
  5473                  },
  5474                  "line": {
  5475                      "description": "Line is the line number of the file to be replaced.",
  5476                      "type": "integer"
  5477                  },
  5478                  "origin-string": {
  5479                      "description": "OriginStr is the origin string of the file.",
  5480                      "type": "string"
  5481                  }
  5482              }
  5483          },
  5484          "v1alpha1.Frame": {
  5485              "type": "object",
  5486              "properties": {
  5487                  "funcname": {
  5488                      "description": "Funcname can be find from kernel source or ` + "`" + `/proc/kallsyms` + "`" + `, such as ` + "`" + `ext4_mount` + "`" + `",
  5489                      "type": "string"
  5490                  },
  5491                  "parameters": {
  5492                      "description": "Parameters is used with predicate, for example, if you want to inject slab error\nin ` + "`" + `d_alloc_parallel(struct dentry *parent, const struct qstr *name)` + "`" + ` with a special\nname ` + "`" + `bananas` + "`" + `, you need to set it to ` + "`" + `struct dentry *parent, const struct qstr *name` + "`" + `\notherwise omit it.",
  5493                      "type": "string"
  5494                  },
  5495                  "predicate": {
  5496                      "description": "Predicate will access the arguments of this Frame, example with Parameters's, you can\nset it to ` + "`" + `STRNCMP(name-\u003ename, \"bananas\", 8)` + "`" + ` to make inject only with it, or omit it\nto inject for all d_alloc_parallel call chain.",
  5497                      "type": "string"
  5498                  }
  5499              }
  5500          },
  5501          "v1alpha1.GCPChaosSpec": {
  5502              "type": "object",
  5503              "properties": {
  5504                  "action": {
  5505                      "description": "Action defines the specific gcp chaos action.\nSupported action: node-stop / node-reset / disk-loss\nDefault action: node-stop\n+kubebuilder:validation:Enum=node-stop;node-reset;disk-loss",
  5506                      "type": "string"
  5507                  },
  5508                  "deviceNames": {
  5509                      "description": "The device name of disks to detach.\nNeeded in disk-loss.\n+ui:form:when=action=='disk-loss'\n+optional",
  5510                      "type": "array",
  5511                      "items": {
  5512                          "type": "string"
  5513                      }
  5514                  },
  5515                  "duration": {
  5516                      "description": "Duration represents the duration of the chaos action.\n+optional",
  5517                      "type": "string"
  5518                  },
  5519                  "instance": {
  5520                      "description": "Instance defines the name of the instance",
  5521                      "type": "string"
  5522                  },
  5523                  "project": {
  5524                      "description": "Project defines the ID of gcp project.",
  5525                      "type": "string"
  5526                  },
  5527                  "remoteCluster": {
  5528                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5529                      "type": "string"
  5530                  },
  5531                  "secretName": {
  5532                      "description": "SecretName defines the name of kubernetes secret. It is used for GCP credentials.\n+optional",
  5533                      "type": "string"
  5534                  },
  5535                  "zone": {
  5536                      "description": "Zone defines the zone of gcp project.",
  5537                      "type": "string"
  5538                  }
  5539              }
  5540          },
  5541          "v1alpha1.HTTPAbortSpec": {
  5542              "type": "object",
  5543              "properties": {
  5544                  "code": {
  5545                      "description": "Code is a rule to select target by http status code in response",
  5546                      "type": "string"
  5547                  },
  5548                  "method": {
  5549                      "description": "HTTP method",
  5550                      "type": "string"
  5551                  },
  5552                  "path": {
  5553                      "description": "Match path of Uri with wildcard matches",
  5554                      "type": "string"
  5555                  },
  5556                  "port": {
  5557                      "description": "The TCP port that the target service listens on",
  5558                      "type": "integer"
  5559                  },
  5560                  "proxy_ports": {
  5561                      "description": "Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports",
  5562                      "type": "array",
  5563                      "items": {
  5564                          "type": "integer"
  5565                      }
  5566                  },
  5567                  "target": {
  5568                      "description": "HTTP target: Request or Response",
  5569                      "type": "string"
  5570                  }
  5571              }
  5572          },
  5573          "v1alpha1.HTTPChaosSpec": {
  5574              "type": "object",
  5575              "properties": {
  5576                  "abort": {
  5577                      "description": "Abort is a rule to abort a http session.\n+optional",
  5578                      "type": "boolean"
  5579                  },
  5580                  "code": {
  5581                      "description": "Code is a rule to select target by http status code in response.\n+optional",
  5582                      "type": "integer"
  5583                  },
  5584                  "delay": {
  5585                      "description": "Delay represents the delay of the target request/response.\nA duration string is a possibly unsigned sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\", \"2h45m\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+optional",
  5586                      "type": "string"
  5587                  },
  5588                  "duration": {
  5589                      "description": "Duration represents the duration of the chaos action.\n+optional",
  5590                      "type": "string"
  5591                  },
  5592                  "method": {
  5593                      "description": "Method is a rule to select target by http method in request.\n+optional",
  5594                      "type": "string"
  5595                  },
  5596                  "mode": {
  5597                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  5598                      "type": "string"
  5599                  },
  5600                  "patch": {
  5601                      "description": "Patch is a rule to patch some contents in target.\n+optional",
  5602                      "$ref": "#/definitions/v1alpha1.PodHttpChaosPatchActions"
  5603                  },
  5604                  "path": {
  5605                      "description": "Path is a rule to select target by uri path in http request.\n+optional",
  5606                      "type": "string"
  5607                  },
  5608                  "port": {
  5609                      "description": "Port represents the target port to be proxy of.",
  5610                      "type": "integer"
  5611                  },
  5612                  "remoteCluster": {
  5613                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5614                      "type": "string"
  5615                  },
  5616                  "replace": {
  5617                      "description": "Replace is a rule to replace some contents in target.\n+optional",
  5618                      "$ref": "#/definitions/v1alpha1.PodHttpChaosReplaceActions"
  5619                  },
  5620                  "request_headers": {
  5621                      "description": "RequestHeaders is a rule to select target by http headers in request.\nThe key-value pairs represent header name and header value pairs.\n+optional",
  5622                      "type": "object",
  5623                      "additionalProperties": {
  5624                          "type": "string"
  5625                      }
  5626                  },
  5627                  "response_headers": {
  5628                      "description": "ResponseHeaders is a rule to select target by http headers in response.\nThe key-value pairs represent header name and header value pairs.\n+optional",
  5629                      "type": "object",
  5630                      "additionalProperties": {
  5631                          "type": "string"
  5632                      }
  5633                  },
  5634                  "selector": {
  5635                      "description": "Selector is used to select pods that are used to inject chaos action.",
  5636                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  5637                  },
  5638                  "target": {
  5639                      "description": "Target is the object to be selected and injected.\n+kubebuilder:validation:Enum=Request;Response",
  5640                      "type": "string"
  5641                  },
  5642                  "tls": {
  5643                      "description": "TLS is the tls config,\nwill override PodHttpChaos if there are multiple HTTPChaos experiments are applied\n+optional",
  5644                      "$ref": "#/definitions/v1alpha1.PodHttpChaosTLS"
  5645                  },
  5646                  "value": {
  5647                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  5648                      "type": "string"
  5649                  }
  5650              }
  5651          },
  5652          "v1alpha1.HTTPConfigSpec": {
  5653              "type": "object",
  5654              "properties": {
  5655                  "file_path": {
  5656                      "description": "The config file path",
  5657                      "type": "string"
  5658                  }
  5659              }
  5660          },
  5661          "v1alpha1.HTTPCriteria": {
  5662              "type": "object",
  5663              "properties": {
  5664                  "statusCode": {
  5665                      "description": "StatusCode defines the expected http status code for the request.\nA statusCode string could be a single code (e.g. 200), or\nan inclusive range (e.g. 200-400, both ` + "`" + `200` + "`" + ` and ` + "`" + `400` + "`" + ` are included).",
  5666                      "type": "string"
  5667                  }
  5668              }
  5669          },
  5670          "v1alpha1.HTTPDelaySpec": {
  5671              "type": "object",
  5672              "properties": {
  5673                  "code": {
  5674                      "description": "Code is a rule to select target by http status code in response",
  5675                      "type": "string"
  5676                  },
  5677                  "delay": {
  5678                      "description": "Delay represents the delay of the target request/response",
  5679                      "type": "string"
  5680                  },
  5681                  "method": {
  5682                      "description": "HTTP method",
  5683                      "type": "string"
  5684                  },
  5685                  "path": {
  5686                      "description": "Match path of Uri with wildcard matches",
  5687                      "type": "string"
  5688                  },
  5689                  "port": {
  5690                      "description": "The TCP port that the target service listens on",
  5691                      "type": "integer"
  5692                  },
  5693                  "proxy_ports": {
  5694                      "description": "Composed with one of the port of HTTP connection, we will only attack HTTP connection with port inside proxy_ports",
  5695                      "type": "array",
  5696                      "items": {
  5697                          "type": "integer"
  5698                      }
  5699                  },
  5700                  "target": {
  5701                      "description": "HTTP target: Request or Response",
  5702                      "type": "string"
  5703                  }
  5704              }
  5705          },
  5706          "v1alpha1.HTTPRequestSpec": {
  5707              "type": "object",
  5708              "properties": {
  5709                  "count": {
  5710                      "description": "The number of requests to send",
  5711                      "type": "integer"
  5712                  },
  5713                  "enable-conn-pool": {
  5714                      "description": "Enable connection pool",
  5715                      "type": "boolean"
  5716                  },
  5717                  "url": {
  5718                      "description": "Request to send\"",
  5719                      "type": "string"
  5720                  }
  5721              }
  5722          },
  5723          "v1alpha1.HTTPStatusCheck": {
  5724              "type": "object",
  5725              "properties": {
  5726                  "body": {
  5727                      "description": "+optional",
  5728                      "type": "string"
  5729                  },
  5730                  "criteria": {
  5731                      "description": "Criteria defines how to determine the result of the status check.",
  5732                      "$ref": "#/definitions/v1alpha1.HTTPCriteria"
  5733                  },
  5734                  "headers": {
  5735                      "description": "+optional",
  5736                      "$ref": "#/definitions/http.Header"
  5737                  },
  5738                  "method": {
  5739                      "description": "+optional\n+kubebuilder:validation:Enum=GET;POST\n+kubebuilder:default=GET",
  5740                      "type": "string"
  5741                  },
  5742                  "url": {
  5743                      "type": "string"
  5744                  }
  5745              }
  5746          },
  5747          "v1alpha1.IOChaosSpec": {
  5748              "type": "object",
  5749              "properties": {
  5750                  "action": {
  5751                      "description": "Action defines the specific pod chaos action.\nSupported action: latency / fault / attrOverride / mistake\n+kubebuilder:validation:Enum=latency;fault;attrOverride;mistake",
  5752                      "type": "string"
  5753                  },
  5754                  "attr": {
  5755                      "description": "Attr defines the overrided attribution\n+ui:form:when=action=='attrOverride'\n+optional",
  5756                      "$ref": "#/definitions/v1alpha1.AttrOverrideSpec"
  5757                  },
  5758                  "containerNames": {
  5759                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  5760                      "type": "array",
  5761                      "items": {
  5762                          "type": "string"
  5763                      }
  5764                  },
  5765                  "delay": {
  5766                      "description": "Delay defines the value of I/O chaos action delay.\nA delay string is a possibly signed sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+ui:form:when=action=='latency'\n+optional",
  5767                      "type": "string"
  5768                  },
  5769                  "duration": {
  5770                      "description": "Duration represents the duration of the chaos action.\nIt is required when the action is ` + "`" + `PodFailureAction` + "`" + `.\nA duration string is a possibly signed sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\", \"-1.5h\" or \"2h45m\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+optional",
  5771                      "type": "string"
  5772                  },
  5773                  "errno": {
  5774                      "description": "Errno defines the error code that returned by I/O action.\nrefer to: https://www-numi.fnal.gov/offline_software/srt_public_context/WebDocs/Errors/unix_system_errors.html\n+ui:form:when=action=='fault'\n+optional",
  5775                      "type": "integer"
  5776                  },
  5777                  "methods": {
  5778                      "description": "Methods defines the I/O methods for injecting I/O chaos action.\ndefault: all I/O methods.\n+optional",
  5779                      "type": "array",
  5780                      "items": {
  5781                          "type": "string"
  5782                      }
  5783                  },
  5784                  "mistake": {
  5785                      "description": "Mistake defines what types of incorrectness are injected to IO operations\n+ui:form:when=action=='mistake'\n+optional",
  5786                      "$ref": "#/definitions/v1alpha1.MistakeSpec"
  5787                  },
  5788                  "mode": {
  5789                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  5790                      "type": "string"
  5791                  },
  5792                  "path": {
  5793                      "description": "Path defines the path of files for injecting I/O chaos action.\n+optional",
  5794                      "type": "string"
  5795                  },
  5796                  "percent": {
  5797                      "description": "Percent defines the percentage of injection errors and provides a number from 0-100.\ndefault: 100.\n+optional\n+kubebuilder:default=100",
  5798                      "type": "integer"
  5799                  },
  5800                  "remoteCluster": {
  5801                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5802                      "type": "string"
  5803                  },
  5804                  "selector": {
  5805                      "description": "Selector is used to select pods that are used to inject chaos action.",
  5806                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  5807                  },
  5808                  "value": {
  5809                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  5810                      "type": "string"
  5811                  },
  5812                  "volumePath": {
  5813                      "description": "VolumePath represents the mount path of injected volume",
  5814                      "type": "string"
  5815                  }
  5816              }
  5817          },
  5818          "v1alpha1.JVMChaosSpec": {
  5819              "type": "object",
  5820              "properties": {
  5821                  "action": {
  5822                      "description": "Action defines the specific jvm chaos action.\nSupported action: latency;return;exception;stress;gc;ruleData\n+kubebuilder:validation:Enum=latency;return;exception;stress;gc;ruleData;mysql",
  5823                      "type": "string"
  5824                  },
  5825                  "class": {
  5826                      "description": "+optional\nJava class",
  5827                      "type": "string"
  5828                  },
  5829                  "containerNames": {
  5830                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  5831                      "type": "array",
  5832                      "items": {
  5833                          "type": "string"
  5834                      }
  5835                  },
  5836                  "cpuCount": {
  5837                      "description": "+optional\nthe CPU core number needs to use, only set it when action is stress",
  5838                      "type": "integer"
  5839                  },
  5840                  "database": {
  5841                      "description": "the match database\ndefault value is \"\", means match all database",
  5842                      "type": "string"
  5843                  },
  5844                  "duration": {
  5845                      "description": "Duration represents the duration of the chaos action\n+optional",
  5846                      "type": "string"
  5847                  },
  5848                  "exception": {
  5849                      "description": "+optional\nthe exception which needs to throw for action ` + "`" + `exception` + "`" + `\nor the exception message needs to throw in action ` + "`" + `mysql` + "`" + `",
  5850                      "type": "string"
  5851                  },
  5852                  "latency": {
  5853                      "description": "+optional\nthe latency duration for action 'latency', unit ms\nor the latency duration in action ` + "`" + `mysql` + "`" + `",
  5854                      "type": "integer"
  5855                  },
  5856                  "memType": {
  5857                      "description": "+optional\nthe memory type needs to locate, only set it when action is stress, the value can be 'stack' or 'heap'",
  5858                      "type": "string"
  5859                  },
  5860                  "method": {
  5861                      "description": "+optional\nthe method in Java class",
  5862                      "type": "string"
  5863                  },
  5864                  "mode": {
  5865                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  5866                      "type": "string"
  5867                  },
  5868                  "mysqlConnectorVersion": {
  5869                      "description": "the version of mysql-connector-java, only support 5.X.X(set to \"5\") and 8.X.X(set to \"8\") now",
  5870                      "type": "string"
  5871                  },
  5872                  "name": {
  5873                      "description": "+optional\nbyteman rule name, should be unique, and will generate one if not set",
  5874                      "type": "string"
  5875                  },
  5876                  "pid": {
  5877                      "description": "the pid of Java process which needs to attach",
  5878                      "type": "integer"
  5879                  },
  5880                  "port": {
  5881                      "description": "+optional\nthe port of agent server, default 9277",
  5882                      "type": "integer"
  5883                  },
  5884                  "remoteCluster": {
  5885                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  5886                      "type": "string"
  5887                  },
  5888                  "ruleData": {
  5889                      "description": "+optional\nthe byteman rule's data for action 'ruleData'",
  5890                      "type": "string"
  5891                  },
  5892                  "selector": {
  5893                      "description": "Selector is used to select pods that are used to inject chaos action.",
  5894                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  5895                  },
  5896                  "sqlType": {
  5897                      "description": "the match sql type\ndefault value is \"\", means match all SQL type.\nThe value can be 'select', 'insert', 'update', 'delete', 'replace'.",
  5898                      "type": "string"
  5899                  },
  5900                  "table": {
  5901                      "description": "the match table\ndefault value is \"\", means match all table",
  5902                      "type": "string"
  5903                  },
  5904                  "value": {
  5905                      "description": "+optional\nthe return value for action 'return'",
  5906                      "type": "string"
  5907                  }
  5908              }
  5909          },
  5910          "v1alpha1.JVMExceptionSpec": {
  5911              "type": "object",
  5912              "properties": {
  5913                  "class": {
  5914                      "description": "+optional\nJava class",
  5915                      "type": "string"
  5916                  },
  5917                  "exception": {
  5918                      "description": "the exception which needs to throw for action ` + "`" + `exception` + "`" + `",
  5919                      "type": "string"
  5920                  },
  5921                  "method": {
  5922                      "description": "+optional\nthe method in Java class",
  5923                      "type": "string"
  5924                  },
  5925                  "pid": {
  5926                      "description": "the pid of Java process which needs to attach",
  5927                      "type": "integer"
  5928                  },
  5929                  "port": {
  5930                      "description": "+optional\nthe port of agent server, default 9277",
  5931                      "type": "integer"
  5932                  }
  5933              }
  5934          },
  5935          "v1alpha1.JVMGCSpec": {
  5936              "type": "object",
  5937              "properties": {
  5938                  "pid": {
  5939                      "description": "the pid of Java process which needs to attach",
  5940                      "type": "integer"
  5941                  },
  5942                  "port": {
  5943                      "description": "+optional\nthe port of agent server, default 9277",
  5944                      "type": "integer"
  5945                  }
  5946              }
  5947          },
  5948          "v1alpha1.JVMLatencySpec": {
  5949              "type": "object",
  5950              "properties": {
  5951                  "class": {
  5952                      "description": "+optional\nJava class",
  5953                      "type": "string"
  5954                  },
  5955                  "latency": {
  5956                      "description": "the latency duration for action 'latency', unit ms",
  5957                      "type": "integer"
  5958                  },
  5959                  "method": {
  5960                      "description": "+optional\nthe method in Java class",
  5961                      "type": "string"
  5962                  },
  5963                  "pid": {
  5964                      "description": "the pid of Java process which needs to attach",
  5965                      "type": "integer"
  5966                  },
  5967                  "port": {
  5968                      "description": "+optional\nthe port of agent server, default 9277",
  5969                      "type": "integer"
  5970                  }
  5971              }
  5972          },
  5973          "v1alpha1.JVMReturnSpec": {
  5974              "type": "object",
  5975              "properties": {
  5976                  "class": {
  5977                      "description": "+optional\nJava class",
  5978                      "type": "string"
  5979                  },
  5980                  "method": {
  5981                      "description": "+optional\nthe method in Java class",
  5982                      "type": "string"
  5983                  },
  5984                  "pid": {
  5985                      "description": "the pid of Java process which needs to attach",
  5986                      "type": "integer"
  5987                  },
  5988                  "port": {
  5989                      "description": "+optional\nthe port of agent server, default 9277",
  5990                      "type": "integer"
  5991                  },
  5992                  "value": {
  5993                      "description": "the return value for action 'return'",
  5994                      "type": "string"
  5995                  }
  5996              }
  5997          },
  5998          "v1alpha1.JVMRuleDataSpec": {
  5999              "type": "object",
  6000              "properties": {
  6001                  "pid": {
  6002                      "description": "the pid of Java process which needs to attach",
  6003                      "type": "integer"
  6004                  },
  6005                  "port": {
  6006                      "description": "+optional\nthe port of agent server, default 9277",
  6007                      "type": "integer"
  6008                  },
  6009                  "rule-data": {
  6010                      "description": "RuleData used to save the rule file's data, will use it when recover",
  6011                      "type": "string"
  6012                  }
  6013              }
  6014          },
  6015          "v1alpha1.JVMStressSpec": {
  6016              "type": "object",
  6017              "properties": {
  6018                  "cpu-count": {
  6019                      "description": "the CPU core number need to use, only set it when action is stress",
  6020                      "type": "integer"
  6021                  },
  6022                  "mem-type": {
  6023                      "description": "the memory type need to locate, only set it when action is stress, the value can be 'stack' or 'heap'",
  6024                      "type": "string"
  6025                  },
  6026                  "pid": {
  6027                      "description": "the pid of Java process which needs to attach",
  6028                      "type": "integer"
  6029                  },
  6030                  "port": {
  6031                      "description": "+optional\nthe port of agent server, default 9277",
  6032                      "type": "integer"
  6033                  }
  6034              }
  6035          },
  6036          "v1alpha1.KafkaFillSpec": {
  6037              "type": "object",
  6038              "properties": {
  6039                  "host": {
  6040                      "description": "The host of kafka server",
  6041                      "type": "string"
  6042                  },
  6043                  "maxBytes": {
  6044                      "description": "The max bytes to fill",
  6045                      "type": "integer"
  6046                  },
  6047                  "messageSize": {
  6048                      "description": "The size of each message",
  6049                      "type": "integer"
  6050                  },
  6051                  "password": {
  6052                      "description": "The password of kafka client",
  6053                      "type": "string"
  6054                  },
  6055                  "port": {
  6056                      "description": "The port of kafka server",
  6057                      "type": "integer"
  6058                  },
  6059                  "reloadCommand": {
  6060                      "description": "The command to reload kafka config",
  6061                      "type": "string"
  6062                  },
  6063                  "topic": {
  6064                      "description": "The topic to attack",
  6065                      "type": "string"
  6066                  },
  6067                  "username": {
  6068                      "description": "The username of kafka client",
  6069                      "type": "string"
  6070                  }
  6071              }
  6072          },
  6073          "v1alpha1.KafkaFloodSpec": {
  6074              "type": "object",
  6075              "properties": {
  6076                  "host": {
  6077                      "description": "The host of kafka server",
  6078                      "type": "string"
  6079                  },
  6080                  "messageSize": {
  6081                      "description": "The size of each message",
  6082                      "type": "integer"
  6083                  },
  6084                  "password": {
  6085                      "description": "The password of kafka client",
  6086                      "type": "string"
  6087                  },
  6088                  "port": {
  6089                      "description": "The port of kafka server",
  6090                      "type": "integer"
  6091                  },
  6092                  "threads": {
  6093                      "description": "The number of worker threads",
  6094                      "type": "integer"
  6095                  },
  6096                  "topic": {
  6097                      "description": "The topic to attack",
  6098                      "type": "string"
  6099                  },
  6100                  "username": {
  6101                      "description": "The username of kafka client",
  6102                      "type": "string"
  6103                  }
  6104              }
  6105          },
  6106          "v1alpha1.KafkaIOSpec": {
  6107              "type": "object",
  6108              "properties": {
  6109                  "configFile": {
  6110                      "description": "The path of server config",
  6111                      "type": "string"
  6112                  },
  6113                  "nonReadable": {
  6114                      "description": "Make kafka cluster non-readable",
  6115                      "type": "boolean"
  6116                  },
  6117                  "nonWritable": {
  6118                      "description": "Make kafka cluster non-writable",
  6119                      "type": "boolean"
  6120                  },
  6121                  "topic": {
  6122                      "description": "The topic to attack",
  6123                      "type": "string"
  6124                  }
  6125              }
  6126          },
  6127          "v1alpha1.KernelChaosSpec": {
  6128              "type": "object",
  6129              "properties": {
  6130                  "containerNames": {
  6131                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  6132                      "type": "array",
  6133                      "items": {
  6134                          "type": "string"
  6135                      }
  6136                  },
  6137                  "duration": {
  6138                      "description": "Duration represents the duration of the chaos action",
  6139                      "type": "string"
  6140                  },
  6141                  "failKernRequest": {
  6142                      "description": "FailKernRequest defines the request of kernel injection",
  6143                      "$ref": "#/definitions/v1alpha1.FailKernRequest"
  6144                  },
  6145                  "mode": {
  6146                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  6147                      "type": "string"
  6148                  },
  6149                  "remoteCluster": {
  6150                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  6151                      "type": "string"
  6152                  },
  6153                  "selector": {
  6154                      "description": "Selector is used to select pods that are used to inject chaos action.",
  6155                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  6156                  },
  6157                  "value": {
  6158                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  6159                      "type": "string"
  6160                  }
  6161              }
  6162          },
  6163          "v1alpha1.LossSpec": {
  6164              "type": "object",
  6165              "properties": {
  6166                  "correlation": {
  6167                      "description": "+optional",
  6168                      "type": "string",
  6169                      "default": "0"
  6170                  },
  6171                  "loss": {
  6172                      "type": "string"
  6173                  }
  6174              }
  6175          },
  6176          "v1alpha1.MemoryStressor": {
  6177              "type": "object",
  6178              "properties": {
  6179                  "oomScoreAdj": {
  6180                      "description": "OOMScoreAdj sets the oom_score_adj of the stress process. See ` + "`" + `man 5 proc` + "`" + ` to know more\nabout this option.\n+kubebuilder:validation:Minimum=-1000\n+kubebuilder:validation:Maximum=1000\n+kubebuilder:default=0\n+optional",
  6181                      "type": "integer"
  6182                  },
  6183                  "options": {
  6184                      "description": "extend stress-ng options\n+optional",
  6185                      "type": "array",
  6186                      "items": {
  6187                          "type": "string"
  6188                      }
  6189                  },
  6190                  "size": {
  6191                      "description": "Size specifies N bytes consumed per vm worker, default is the total available memory.\nOne can specify the size as % of total available memory or in units of B, KB/KiB,\nMB/MiB, GB/GiB, TB/TiB.\n+optional",
  6192                      "type": "string"
  6193                  },
  6194                  "workers": {
  6195                      "description": "Workers specifies N workers to apply the stressor.\nMaximum 8192 workers can run by stress-ng\n+kubebuilder:validation:Maximum=8192",
  6196                      "type": "integer"
  6197                  }
  6198              }
  6199          },
  6200          "v1alpha1.MistakeSpec": {
  6201              "type": "object",
  6202              "properties": {
  6203                  "filling": {
  6204                      "description": "Filling determines what is filled in the mistake data.\n+optional\n+kubebuilder:validation:Enum=zero;random",
  6205                      "type": "string"
  6206                  },
  6207                  "maxLength": {
  6208                      "description": "Max length of each wrong data segment in bytes\n+optional\n+kubebuilder:validation:Minimum=1",
  6209                      "type": "integer"
  6210                  },
  6211                  "maxOccurrences": {
  6212                      "description": "There will be [1, MaxOccurrences] segments of wrong data.\n+optional\n+kubebuilder:validation:Minimum=1",
  6213                      "type": "integer"
  6214                  }
  6215              }
  6216          },
  6217          "v1alpha1.NetworkBandwidthSpec": {
  6218              "type": "object",
  6219              "properties": {
  6220                  "buffer": {
  6221                      "description": "+kubebuilder:validation:Minimum=1",
  6222                      "type": "integer"
  6223                  },
  6224                  "device": {
  6225                      "type": "string"
  6226                  },
  6227                  "hostname": {
  6228                      "type": "string"
  6229                  },
  6230                  "ip-address": {
  6231                      "type": "string"
  6232                  },
  6233                  "limit": {
  6234                      "description": "+kubebuilder:validation:Minimum=1",
  6235                      "type": "integer"
  6236                  },
  6237                  "minburst": {
  6238                      "type": "integer"
  6239                  },
  6240                  "peakrate": {
  6241                      "type": "integer"
  6242                  },
  6243                  "rate": {
  6244                      "type": "string"
  6245                  }
  6246              }
  6247          },
  6248          "v1alpha1.NetworkChaosSpec": {
  6249              "type": "object",
  6250              "properties": {
  6251                  "action": {
  6252                      "description": "Action defines the specific network chaos action.\nSupported action: partition, netem, delay, loss, duplicate, corrupt\nDefault action: delay\n+kubebuilder:validation:Enum=netem;delay;loss;duplicate;corrupt;partition;bandwidth",
  6253                      "type": "string"
  6254                  },
  6255                  "bandwidth": {
  6256                      "description": "Bandwidth represents the detail about bandwidth control action\n+ui:form:when=action=='bandwidth'\n+optional",
  6257                      "$ref": "#/definitions/v1alpha1.BandwidthSpec"
  6258                  },
  6259                  "corrupt": {
  6260                      "description": "Corrupt represents the detail about corrupt action\n+ui:form:when=action=='corrupt'\n+optional",
  6261                      "$ref": "#/definitions/v1alpha1.CorruptSpec"
  6262                  },
  6263                  "delay": {
  6264                      "description": "Delay represents the detail about delay action\n+ui:form:when=action=='delay'\n+optional",
  6265                      "$ref": "#/definitions/v1alpha1.DelaySpec"
  6266                  },
  6267                  "device": {
  6268                      "description": "Device represents the network device to be affected.\n+optional",
  6269                      "type": "string"
  6270                  },
  6271                  "direction": {
  6272                      "description": "Direction represents the direction, this applies on netem and network partition action\n+optional\n+kubebuilder:validation:Enum=to;from;both\n+kubebuilder:default=to",
  6273                      "type": "string"
  6274                  },
  6275                  "duplicate": {
  6276                      "description": "DuplicateSpec represents the detail about loss action\n+ui:form:when=action=='duplicate'\n+optional",
  6277                      "$ref": "#/definitions/v1alpha1.DuplicateSpec"
  6278                  },
  6279                  "duration": {
  6280                      "description": "Duration represents the duration of the chaos action",
  6281                      "type": "string"
  6282                  },
  6283                  "externalTargets": {
  6284                      "description": "ExternalTargets represents network targets outside k8s\n+optional",
  6285                      "type": "array",
  6286                      "items": {
  6287                          "type": "string"
  6288                      }
  6289                  },
  6290                  "loss": {
  6291                      "description": "Loss represents the detail about loss action\n+ui:form:when=action=='loss'\n+optional",
  6292                      "$ref": "#/definitions/v1alpha1.LossSpec"
  6293                  },
  6294                  "mode": {
  6295                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  6296                      "type": "string"
  6297                  },
  6298                  "rate": {
  6299                      "description": "Rate represents the detail about rate control action\n+ui:form:when=action=='rate'\n+optional",
  6300                      "$ref": "#/definitions/v1alpha1.RateSpec"
  6301                  },
  6302                  "remoteCluster": {
  6303                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  6304                      "type": "string"
  6305                  },
  6306                  "selector": {
  6307                      "description": "Selector is used to select pods that are used to inject chaos action.",
  6308                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  6309                  },
  6310                  "target": {
  6311                      "description": "Target represents network target, this applies on netem and network partition action\n+optional",
  6312                      "$ref": "#/definitions/v1alpha1.PodSelector"
  6313                  },
  6314                  "targetDevice": {
  6315                      "description": "TargetDevice represents the network device to be affected in target scope.\n+optional",
  6316                      "type": "string"
  6317                  },
  6318                  "value": {
  6319                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  6320                      "type": "string"
  6321                  }
  6322              }
  6323          },
  6324          "v1alpha1.NetworkCorruptSpec": {
  6325              "type": "object",
  6326              "properties": {
  6327                  "correlation": {
  6328                      "description": "correlation is percentage (10 is 10%)",
  6329                      "type": "string"
  6330                  },
  6331                  "device": {
  6332                      "description": "the network interface to impact",
  6333                      "type": "string"
  6334                  },
  6335                  "egress-port": {
  6336                      "description": "only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6337                      "type": "string"
  6338                  },
  6339                  "hostname": {
  6340                      "description": "only impact traffic to these hostnames",
  6341                      "type": "string"
  6342                  },
  6343                  "ip-address": {
  6344                      "description": "only impact egress traffic to these IP addresses",
  6345                      "type": "string"
  6346                  },
  6347                  "ip-protocol": {
  6348                      "description": "only impact traffic using this IP protocol, supported: tcp, udp, icmp, all",
  6349                      "type": "string"
  6350                  },
  6351                  "percent": {
  6352                      "description": "percentage of packets to corrupt (10 is 10%)",
  6353                      "type": "string"
  6354                  },
  6355                  "source-port": {
  6356                      "description": "only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6357                      "type": "string"
  6358                  }
  6359              }
  6360          },
  6361          "v1alpha1.NetworkDNSSpec": {
  6362              "type": "object",
  6363              "properties": {
  6364                  "dns-domain-name": {
  6365                      "description": "map this host to specified IP",
  6366                      "type": "string"
  6367                  },
  6368                  "dns-ip": {
  6369                      "description": "map specified host to this IP address",
  6370                      "type": "string"
  6371                  },
  6372                  "dns-server": {
  6373                      "description": "update the DNS server in /etc/resolv.conf with this value",
  6374                      "type": "string"
  6375                  }
  6376              }
  6377          },
  6378          "v1alpha1.NetworkDelaySpec": {
  6379              "type": "object",
  6380              "properties": {
  6381                  "accept-tcp-flags": {
  6382                      "description": "only the packet which match the tcp flag can be accepted, others will be dropped.\nonly set when the IPProtocol is tcp, used for partition.",
  6383                      "type": "string"
  6384                  },
  6385                  "correlation": {
  6386                      "description": "correlation is percentage (10 is 10%)",
  6387                      "type": "string"
  6388                  },
  6389                  "device": {
  6390                      "description": "the network interface to impact",
  6391                      "type": "string"
  6392                  },
  6393                  "egress-port": {
  6394                      "description": "only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6395                      "type": "string"
  6396                  },
  6397                  "hostname": {
  6398                      "description": "only impact traffic to these hostnames",
  6399                      "type": "string"
  6400                  },
  6401                  "ip-address": {
  6402                      "description": "only impact egress traffic to these IP addresses",
  6403                      "type": "string"
  6404                  },
  6405                  "ip-protocol": {
  6406                      "description": "only impact traffic using this IP protocol, supported: tcp, udp, icmp, all",
  6407                      "type": "string"
  6408                  },
  6409                  "jitter": {
  6410                      "description": "jitter time, time units: ns, us (or µs), ms, s, m, h.",
  6411                      "type": "string"
  6412                  },
  6413                  "latency": {
  6414                      "description": "delay egress time, time units: ns, us (or µs), ms, s, m, h.",
  6415                      "type": "string"
  6416                  },
  6417                  "source-port": {
  6418                      "description": "only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6419                      "type": "string"
  6420                  }
  6421              }
  6422          },
  6423          "v1alpha1.NetworkDownSpec": {
  6424              "type": "object",
  6425              "properties": {
  6426                  "device": {
  6427                      "description": "The network interface to impact",
  6428                      "type": "string"
  6429                  },
  6430                  "duration": {
  6431                      "description": "NIC down time, time units: ns, us (or µs), ms, s, m, h.",
  6432                      "type": "string"
  6433                  }
  6434              }
  6435          },
  6436          "v1alpha1.NetworkDuplicateSpec": {
  6437              "type": "object",
  6438              "properties": {
  6439                  "correlation": {
  6440                      "description": "correlation is percentage (10 is 10%)",
  6441                      "type": "string"
  6442                  },
  6443                  "device": {
  6444                      "description": "the network interface to impact",
  6445                      "type": "string"
  6446                  },
  6447                  "egress-port": {
  6448                      "description": "only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6449                      "type": "string"
  6450                  },
  6451                  "hostname": {
  6452                      "description": "only impact traffic to these hostnames",
  6453                      "type": "string"
  6454                  },
  6455                  "ip-address": {
  6456                      "description": "only impact egress traffic to these IP addresses",
  6457                      "type": "string"
  6458                  },
  6459                  "ip-protocol": {
  6460                      "description": "only impact traffic using this IP protocol, supported: tcp, udp, icmp, all",
  6461                      "type": "string"
  6462                  },
  6463                  "percent": {
  6464                      "description": "percentage of packets to duplicate (10 is 10%)",
  6465                      "type": "string"
  6466                  },
  6467                  "source-port": {
  6468                      "description": "only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6469                      "type": "string"
  6470                  }
  6471              }
  6472          },
  6473          "v1alpha1.NetworkFloodSpec": {
  6474              "type": "object",
  6475              "properties": {
  6476                  "duration": {
  6477                      "description": "The number of seconds to run the iperf test",
  6478                      "type": "string"
  6479                  },
  6480                  "ip-address": {
  6481                      "description": "Generate traffic to this IP address",
  6482                      "type": "string"
  6483                  },
  6484                  "parallel": {
  6485                      "description": "The number of iperf parallel client threads to run",
  6486                      "type": "integer"
  6487                  },
  6488                  "port": {
  6489                      "description": "Generate traffic to this port on the IP address",
  6490                      "type": "string"
  6491                  },
  6492                  "rate": {
  6493                      "description": "The speed of network traffic, allows bps, kbps, mbps, gbps, tbps unit. bps means bytes per second",
  6494                      "type": "string"
  6495                  }
  6496              }
  6497          },
  6498          "v1alpha1.NetworkLossSpec": {
  6499              "type": "object",
  6500              "properties": {
  6501                  "correlation": {
  6502                      "description": "correlation is percentage (10 is 10%)",
  6503                      "type": "string"
  6504                  },
  6505                  "device": {
  6506                      "description": "the network interface to impact",
  6507                      "type": "string"
  6508                  },
  6509                  "egress-port": {
  6510                      "description": "only impact egress traffic to these destination ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6511                      "type": "string"
  6512                  },
  6513                  "hostname": {
  6514                      "description": "only impact traffic to these hostnames",
  6515                      "type": "string"
  6516                  },
  6517                  "ip-address": {
  6518                      "description": "only impact egress traffic to these IP addresses",
  6519                      "type": "string"
  6520                  },
  6521                  "ip-protocol": {
  6522                      "description": "only impact traffic using this IP protocol, supported: tcp, udp, icmp, all",
  6523                      "type": "string"
  6524                  },
  6525                  "percent": {
  6526                      "description": "percentage of packets to loss (10 is 10%)",
  6527                      "type": "string"
  6528                  },
  6529                  "source-port": {
  6530                      "description": "only impact egress traffic from these source ports, use a ',' to separate or to indicate the range, such as 80, 8001:8010.\nit can only be used in conjunction with -p tcp or -p udp",
  6531                      "type": "string"
  6532                  }
  6533              }
  6534          },
  6535          "v1alpha1.NetworkPartitionSpec": {
  6536              "type": "object",
  6537              "properties": {
  6538                  "accept-tcp-flags": {
  6539                      "description": "only the packet which match the tcp flag can be accepted, others will be dropped.\nonly set when the IPProtocol is tcp, used for partition.",
  6540                      "type": "string"
  6541                  },
  6542                  "device": {
  6543                      "description": "the network interface to impact",
  6544                      "type": "string"
  6545                  },
  6546                  "direction": {
  6547                      "description": "specifies the partition direction, values can be 'from', 'to'.\n'from' means packets coming from the 'IPAddress' or 'Hostname' and going to your server,\n'to' means packets originating from your server and going to the 'IPAddress' or 'Hostname'.",
  6548                      "type": "string"
  6549                  },
  6550                  "hostname": {
  6551                      "description": "only impact traffic to these hostnames",
  6552                      "type": "string"
  6553                  },
  6554                  "ip-address": {
  6555                      "description": "only impact egress traffic to these IP addresses",
  6556                      "type": "string"
  6557                  },
  6558                  "ip-protocol": {
  6559                      "description": "only impact egress traffic to these IP addresses",
  6560                      "type": "string"
  6561                  }
  6562              }
  6563          },
  6564          "v1alpha1.PMJVMMySQLSpec": {
  6565              "type": "object",
  6566              "properties": {
  6567                  "database": {
  6568                      "description": "the match database\ndefault value is \"\", means match all database",
  6569                      "type": "string"
  6570                  },
  6571                  "exception": {
  6572                      "description": "The exception which needs to throw for action ` + "`" + `exception` + "`" + `\nor the exception message needs to throw in action ` + "`" + `mysql` + "`" + `",
  6573                      "type": "string"
  6574                  },
  6575                  "latency": {
  6576                      "description": "The latency duration for action 'latency'\nor the latency duration in action ` + "`" + `mysql` + "`" + `",
  6577                      "type": "integer"
  6578                  },
  6579                  "mysqlConnectorVersion": {
  6580                      "description": "the version of mysql-connector-java, only support 5.X.X(set to \"5\") and 8.X.X(set to \"8\") now",
  6581                      "type": "string"
  6582                  },
  6583                  "pid": {
  6584                      "description": "the pid of Java process which needs to attach",
  6585                      "type": "integer"
  6586                  },
  6587                  "port": {
  6588                      "description": "+optional\nthe port of agent server, default 9277",
  6589                      "type": "integer"
  6590                  },
  6591                  "sqlType": {
  6592                      "description": "the match sql type\ndefault value is \"\", means match all SQL type.\nThe value can be 'select', 'insert', 'update', 'delete', 'replace'.",
  6593                      "type": "string"
  6594                  },
  6595                  "table": {
  6596                      "description": "the match table\ndefault value is \"\", means match all table",
  6597                      "type": "string"
  6598                  }
  6599              }
  6600          },
  6601          "v1alpha1.PhysicalMachineChaosSpec": {
  6602              "type": "object",
  6603              "properties": {
  6604                  "action": {
  6605                      "description": "+kubebuilder:validation:Enum=stress-cpu;stress-mem;disk-read-payload;disk-write-payload;disk-fill;network-corrupt;network-duplicate;network-loss;network-delay;network-partition;network-dns;network-bandwidth;network-flood;network-down;process;jvm-exception;jvm-gc;jvm-latency;jvm-return;jvm-stress;jvm-rule-data;jvm-mysql;clock;redis-expiration;redis-penetration;redis-cacheLimit;redis-restart;redis-stop;kafka-fill;kafka-flood;kafka-io;file-create;file-modify;file-delete;file-rename;file-append;file-replace;vm;user_defined",
  6606                      "type": "string"
  6607                  },
  6608                  "address": {
  6609                      "description": "DEPRECATED: Use Selector instead.\nOnly one of Address and Selector could be specified.\n+optional",
  6610                      "type": "array",
  6611                      "items": {
  6612                          "type": "string"
  6613                      }
  6614                  },
  6615                  "clock": {
  6616                      "description": "+ui:form:when=action=='clock'\n+optional",
  6617                      "$ref": "#/definitions/v1alpha1.ClockSpec"
  6618                  },
  6619                  "disk-fill": {
  6620                      "description": "+ui:form:when=action=='disk-fill'\n+optional",
  6621                      "$ref": "#/definitions/v1alpha1.DiskFillSpec"
  6622                  },
  6623                  "disk-read-payload": {
  6624                      "description": "+ui:form:when=action=='disk-read-payload'\n+optional",
  6625                      "$ref": "#/definitions/v1alpha1.DiskPayloadSpec"
  6626                  },
  6627                  "disk-write-payload": {
  6628                      "description": "+ui:form:when=action=='disk-write-payload'\n+optional",
  6629                      "$ref": "#/definitions/v1alpha1.DiskPayloadSpec"
  6630                  },
  6631                  "duration": {
  6632                      "description": "Duration represents the duration of the chaos action\n+optional",
  6633                      "type": "string"
  6634                  },
  6635                  "file-append": {
  6636                      "description": "+ui:form:when=action=='file-append'\n+optional",
  6637                      "$ref": "#/definitions/v1alpha1.FileAppendSpec"
  6638                  },
  6639                  "file-create": {
  6640                      "description": "+ui:form:when=action=='file-create'\n+optional",
  6641                      "$ref": "#/definitions/v1alpha1.FileCreateSpec"
  6642                  },
  6643                  "file-delete": {
  6644                      "description": "+ui:form:when=action=='file-delete'\n+optional",
  6645                      "$ref": "#/definitions/v1alpha1.FileDeleteSpec"
  6646                  },
  6647                  "file-modify": {
  6648                      "description": "+ui:form:when=action=='file-modify'\n+optional",
  6649                      "$ref": "#/definitions/v1alpha1.FileModifyPrivilegeSpec"
  6650                  },
  6651                  "file-rename": {
  6652                      "description": "+ui:form:when=action=='file-create'\n+optional",
  6653                      "$ref": "#/definitions/v1alpha1.FileRenameSpec"
  6654                  },
  6655                  "file-replace": {
  6656                      "description": "+ui:form:when=action=='file-replace'\n+optional",
  6657                      "$ref": "#/definitions/v1alpha1.FileReplaceSpec"
  6658                  },
  6659                  "http-abort": {
  6660                      "description": "+ui:form:when=action=='http-abort'\n+optional",
  6661                      "$ref": "#/definitions/v1alpha1.HTTPAbortSpec"
  6662                  },
  6663                  "http-config": {
  6664                      "description": "+ui:form:when=action=='http-config'\n+optional",
  6665                      "$ref": "#/definitions/v1alpha1.HTTPConfigSpec"
  6666                  },
  6667                  "http-delay": {
  6668                      "description": "+ui:form:when=action=='http-delay'\n+optional",
  6669                      "$ref": "#/definitions/v1alpha1.HTTPDelaySpec"
  6670                  },
  6671                  "http-request": {
  6672                      "description": "+ui:form:when=action=='http-request'\n+optional",
  6673                      "$ref": "#/definitions/v1alpha1.HTTPRequestSpec"
  6674                  },
  6675                  "jvm-exception": {
  6676                      "description": "+ui:form:when=action=='jvm-exception'\n+optional",
  6677                      "$ref": "#/definitions/v1alpha1.JVMExceptionSpec"
  6678                  },
  6679                  "jvm-gc": {
  6680                      "description": "+ui:form:when=action=='jvm-gc'\n+optional",
  6681                      "$ref": "#/definitions/v1alpha1.JVMGCSpec"
  6682                  },
  6683                  "jvm-latency": {
  6684                      "description": "+ui:form:when=action=='jvm-latency'\n+optional",
  6685                      "$ref": "#/definitions/v1alpha1.JVMLatencySpec"
  6686                  },
  6687                  "jvm-mysql": {
  6688                      "description": "+ui:form:when=action=='jvm-mysql'\n+optional",
  6689                      "$ref": "#/definitions/v1alpha1.PMJVMMySQLSpec"
  6690                  },
  6691                  "jvm-return": {
  6692                      "description": "+ui:form:when=action=='jvm-return'\n+optional",
  6693                      "$ref": "#/definitions/v1alpha1.JVMReturnSpec"
  6694                  },
  6695                  "jvm-rule-data": {
  6696                      "description": "+ui:form:when=action=='jvm-rule-data'\n+optional",
  6697                      "$ref": "#/definitions/v1alpha1.JVMRuleDataSpec"
  6698                  },
  6699                  "jvm-stress": {
  6700                      "description": "+ui:form:when=action=='jvm-stress'\n+optional",
  6701                      "$ref": "#/definitions/v1alpha1.JVMStressSpec"
  6702                  },
  6703                  "kafka-fill": {
  6704                      "description": "+ui:form:when=action=='kafka-fill'\n+optional",
  6705                      "$ref": "#/definitions/v1alpha1.KafkaFillSpec"
  6706                  },
  6707                  "kafka-flood": {
  6708                      "description": "+ui:form:when=action=='kafka-flood'\n+optional",
  6709                      "$ref": "#/definitions/v1alpha1.KafkaFloodSpec"
  6710                  },
  6711                  "kafka-io": {
  6712                      "description": "+ui:form:when=action=='kafka-io'\n+optional",
  6713                      "$ref": "#/definitions/v1alpha1.KafkaIOSpec"
  6714                  },
  6715                  "mode": {
  6716                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  6717                      "type": "string"
  6718                  },
  6719                  "network-bandwidth": {
  6720                      "description": "+ui:form:when=action=='network-bandwidth'\n+optional",
  6721                      "$ref": "#/definitions/v1alpha1.NetworkBandwidthSpec"
  6722                  },
  6723                  "network-corrupt": {
  6724                      "description": "+ui:form:when=action=='network-corrupt'\n+optional",
  6725                      "$ref": "#/definitions/v1alpha1.NetworkCorruptSpec"
  6726                  },
  6727                  "network-delay": {
  6728                      "description": "+ui:form:when=action=='network-delay'\n+optional",
  6729                      "$ref": "#/definitions/v1alpha1.NetworkDelaySpec"
  6730                  },
  6731                  "network-dns": {
  6732                      "description": "+ui:form:when=action=='network-dns'\n+optional",
  6733                      "$ref": "#/definitions/v1alpha1.NetworkDNSSpec"
  6734                  },
  6735                  "network-down": {
  6736                      "description": "+ui:form:when=action=='network-down'\n+optional",
  6737                      "$ref": "#/definitions/v1alpha1.NetworkDownSpec"
  6738                  },
  6739                  "network-duplicate": {
  6740                      "description": "+ui:form:when=action=='network-duplicate'\n+optional",
  6741                      "$ref": "#/definitions/v1alpha1.NetworkDuplicateSpec"
  6742                  },
  6743                  "network-flood": {
  6744                      "description": "+ui:form:when=action=='network-flood'\n+optional",
  6745                      "$ref": "#/definitions/v1alpha1.NetworkFloodSpec"
  6746                  },
  6747                  "network-loss": {
  6748                      "description": "+ui:form:when=action=='network-loss'\n+optional",
  6749                      "$ref": "#/definitions/v1alpha1.NetworkLossSpec"
  6750                  },
  6751                  "network-partition": {
  6752                      "description": "+ui:form:when=action=='network-partition'\n+optional",
  6753                      "$ref": "#/definitions/v1alpha1.NetworkPartitionSpec"
  6754                  },
  6755                  "process": {
  6756                      "description": "+ui:form:when=action=='process'\n+optional",
  6757                      "$ref": "#/definitions/v1alpha1.ProcessSpec"
  6758                  },
  6759                  "redis-cacheLimit": {
  6760                      "description": "+ui:form:when=action=='redis-cacheLimit'\n+optional",
  6761                      "$ref": "#/definitions/v1alpha1.RedisCacheLimitSpec"
  6762                  },
  6763                  "redis-expiration": {
  6764                      "description": "+ui:form:when=action=='redis-expiration'\n+optional",
  6765                      "$ref": "#/definitions/v1alpha1.RedisExpirationSpec"
  6766                  },
  6767                  "redis-penetration": {
  6768                      "description": "+ui:form:when=action=='redis-penetration'\n+optional",
  6769                      "$ref": "#/definitions/v1alpha1.RedisPenetrationSpec"
  6770                  },
  6771                  "redis-restart": {
  6772                      "description": "+ui:form:when=action=='redis-restart'\n+optional",
  6773                      "$ref": "#/definitions/v1alpha1.RedisSentinelRestartSpec"
  6774                  },
  6775                  "redis-stop": {
  6776                      "description": "+ui:form:when=action=='redis-stop'\n+optional",
  6777                      "$ref": "#/definitions/v1alpha1.RedisSentinelStopSpec"
  6778                  },
  6779                  "remoteCluster": {
  6780                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  6781                      "type": "string"
  6782                  },
  6783                  "selector": {
  6784                      "description": "Selector is used to select physical machines that are used to inject chaos action.\n+optional",
  6785                      "$ref": "#/definitions/v1alpha1.PhysicalMachineSelectorSpec"
  6786                  },
  6787                  "stress-cpu": {
  6788                      "description": "+ui:form:when=action=='stress-cpu'\n+optional",
  6789                      "$ref": "#/definitions/v1alpha1.StressCPUSpec"
  6790                  },
  6791                  "stress-mem": {
  6792                      "description": "+ui:form:when=action=='stress-mem'\n+optional",
  6793                      "$ref": "#/definitions/v1alpha1.StressMemorySpec"
  6794                  },
  6795                  "user_defined": {
  6796                      "description": "+ui:form:when=action=='user_defined'\n+optional",
  6797                      "$ref": "#/definitions/v1alpha1.UserDefinedSpec"
  6798                  },
  6799                  "value": {
  6800                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of physical machines to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of physical machines the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  6801                      "type": "string"
  6802                  },
  6803                  "vm": {
  6804                      "description": "+ui:form:when=action=='vm'\n+optional",
  6805                      "$ref": "#/definitions/v1alpha1.VMSpec"
  6806                  }
  6807              }
  6808          },
  6809          "v1alpha1.PhysicalMachineSelectorSpec": {
  6810              "type": "object",
  6811              "properties": {
  6812                  "annotationSelectors": {
  6813                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on annotations.\n+optional",
  6814                      "type": "object",
  6815                      "additionalProperties": {
  6816                          "type": "string"
  6817                      }
  6818                  },
  6819                  "fieldSelectors": {
  6820                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on fields.\n+optional",
  6821                      "type": "object",
  6822                      "additionalProperties": {
  6823                          "type": "string"
  6824                      }
  6825                  },
  6826                  "labelSelectors": {
  6827                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on labels.\n+optional",
  6828                      "type": "object",
  6829                      "additionalProperties": {
  6830                          "type": "string"
  6831                      }
  6832                  },
  6833                  "namespaces": {
  6834                      "description": "Namespaces is a set of namespace to which objects belong.\n+optional",
  6835                      "type": "array",
  6836                      "items": {
  6837                          "type": "string"
  6838                      }
  6839                  },
  6840                  "physicalMachines": {
  6841                      "description": "PhysicalMachines is a map of string keys and a set values that used to select physical machines.\nThe key defines the namespace which physical machine belong,\nand each value is a set of physical machine names.\n+optional",
  6842                      "type": "object",
  6843                      "additionalProperties": {
  6844                          "type": "array",
  6845                          "items": {
  6846                              "type": "string"
  6847                          }
  6848                      }
  6849                  }
  6850              }
  6851          },
  6852          "v1alpha1.PodChaosSpec": {
  6853              "type": "object",
  6854              "properties": {
  6855                  "action": {
  6856                      "description": "Action defines the specific pod chaos action.\nSupported action: pod-kill / pod-failure / container-kill\nDefault action: pod-kill\n+kubebuilder:validation:Enum=pod-kill;pod-failure;container-kill",
  6857                      "type": "string"
  6858                  },
  6859                  "containerNames": {
  6860                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  6861                      "type": "array",
  6862                      "items": {
  6863                          "type": "string"
  6864                      }
  6865                  },
  6866                  "duration": {
  6867                      "description": "Duration represents the duration of the chaos action.\nIt is required when the action is ` + "`" + `PodFailureAction` + "`" + `.\nA duration string is a possibly signed sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\", \"-1.5h\" or \"2h45m\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+optional",
  6868                      "type": "string"
  6869                  },
  6870                  "gracePeriod": {
  6871                      "description": "GracePeriod is used in pod-kill action. It represents the duration in seconds before the pod should be deleted.\nValue must be non-negative integer. The default value is zero that indicates delete immediately.\n+optional\n+kubebuilder:validation:Minimum=0",
  6872                      "type": "integer"
  6873                  },
  6874                  "mode": {
  6875                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  6876                      "type": "string"
  6877                  },
  6878                  "remoteCluster": {
  6879                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  6880                      "type": "string"
  6881                  },
  6882                  "selector": {
  6883                      "description": "Selector is used to select pods that are used to inject chaos action.",
  6884                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  6885                  },
  6886                  "value": {
  6887                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  6888                      "type": "string"
  6889                  }
  6890              }
  6891          },
  6892          "v1alpha1.PodHttpChaosPatchActions": {
  6893              "type": "object",
  6894              "properties": {
  6895                  "body": {
  6896                      "description": "Body is a rule to patch message body of target.\n+optional",
  6897                      "$ref": "#/definitions/v1alpha1.PodHttpChaosPatchBodyAction"
  6898                  },
  6899                  "headers": {
  6900                      "description": "Headers is a rule to append http headers of target.\nFor example: ` + "`" + `[[\"Set-Cookie\", \"\u003cone cookie\u003e\"], [\"Set-Cookie\", \"\u003canother cookie\u003e\"]]` + "`" + `.\n+optional",
  6901                      "type": "array",
  6902                      "items": {
  6903                          "type": "array",
  6904                          "items": {
  6905                              "type": "string"
  6906                          }
  6907                      }
  6908                  },
  6909                  "queries": {
  6910                      "description": "Queries is a rule to append uri queries of target(Request only).\nFor example: ` + "`" + `[[\"foo\", \"bar\"], [\"foo\", \"unknown\"]]` + "`" + `.\n+optional",
  6911                      "type": "array",
  6912                      "items": {
  6913                          "type": "array",
  6914                          "items": {
  6915                              "type": "string"
  6916                          }
  6917                      }
  6918                  }
  6919              }
  6920          },
  6921          "v1alpha1.PodHttpChaosPatchBodyAction": {
  6922              "type": "object",
  6923              "properties": {
  6924                  "type": {
  6925                      "description": "Type represents the patch type, only support ` + "`" + `JSON` + "`" + ` as [merge patch json](https://tools.ietf.org/html/rfc7396) currently.",
  6926                      "type": "string"
  6927                  },
  6928                  "value": {
  6929                      "description": "Value is the patch contents.",
  6930                      "type": "string"
  6931                  }
  6932              }
  6933          },
  6934          "v1alpha1.PodHttpChaosReplaceActions": {
  6935              "type": "object",
  6936              "properties": {
  6937                  "body": {
  6938                      "description": "Body is a rule to replace http message body in target.\n+optional",
  6939                      "type": "array",
  6940                      "items": {
  6941                          "type": "integer"
  6942                      }
  6943                  },
  6944                  "code": {
  6945                      "description": "Code is a rule to replace http status code in response.\n+optional",
  6946                      "type": "integer"
  6947                  },
  6948                  "headers": {
  6949                      "description": "Headers is a rule to replace http headers of target.\nThe key-value pairs represent header name and header value pairs.\n+optional",
  6950                      "type": "object",
  6951                      "additionalProperties": {
  6952                          "type": "string"
  6953                      }
  6954                  },
  6955                  "method": {
  6956                      "description": "Method is a rule to replace http method in request.\n+optional",
  6957                      "type": "string"
  6958                  },
  6959                  "path": {
  6960                      "description": "Path is rule to to replace uri path in http request.\n+optional",
  6961                      "type": "string"
  6962                  },
  6963                  "queries": {
  6964                      "description": "Queries is a rule to replace uri queries in http request.\nFor example, with value ` + "`" + `{ \"foo\": \"unknown\" }` + "`" + `, the ` + "`" + `/?foo=bar` + "`" + ` will be altered to ` + "`" + `/?foo=unknown` + "`" + `,\n+optional",
  6965                      "type": "object",
  6966                      "additionalProperties": {
  6967                          "type": "string"
  6968                      }
  6969                  }
  6970              }
  6971          },
  6972          "v1alpha1.PodHttpChaosTLS": {
  6973              "type": "object",
  6974              "properties": {
  6975                  "caName": {
  6976                      "description": "CAName represents the data name of ca file in secret, ` + "`" + `ca.crt` + "`" + ` for example\n+optional",
  6977                      "type": "string"
  6978                  },
  6979                  "certName": {
  6980                      "description": "CertName represents the data name of cert file in secret, ` + "`" + `tls.crt` + "`" + ` for example",
  6981                      "type": "string"
  6982                  },
  6983                  "keyName": {
  6984                      "description": "KeyName represents the data name of key file in secret, ` + "`" + `tls.key` + "`" + ` for example",
  6985                      "type": "string"
  6986                  },
  6987                  "secretName": {
  6988                      "description": "SecretName represents the name of required secret resource",
  6989                      "type": "string"
  6990                  },
  6991                  "secretNamespace": {
  6992                      "description": "SecretNamespace represents the namespace of required secret resource",
  6993                      "type": "string"
  6994                  }
  6995              }
  6996          },
  6997          "v1alpha1.PodSelector": {
  6998              "type": "object",
  6999              "properties": {
  7000                  "mode": {
  7001                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  7002                      "type": "string"
  7003                  },
  7004                  "selector": {
  7005                      "description": "Selector is used to select pods that are used to inject chaos action.",
  7006                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  7007                  },
  7008                  "value": {
  7009                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  7010                      "type": "string"
  7011                  }
  7012              }
  7013          },
  7014          "v1alpha1.PodSelectorSpec": {
  7015              "type": "object",
  7016              "properties": {
  7017                  "annotationSelectors": {
  7018                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on annotations.\n+optional",
  7019                      "type": "object",
  7020                      "additionalProperties": {
  7021                          "type": "string"
  7022                      }
  7023                  },
  7024                  "fieldSelectors": {
  7025                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on fields.\n+optional",
  7026                      "type": "object",
  7027                      "additionalProperties": {
  7028                          "type": "string"
  7029                      }
  7030                  },
  7031                  "labelSelectors": {
  7032                      "description": "Map of string keys and values that can be used to select objects.\nA selector based on labels.\n+optional",
  7033                      "type": "object",
  7034                      "additionalProperties": {
  7035                          "type": "string"
  7036                      }
  7037                  },
  7038                  "namespaces": {
  7039                      "description": "Namespaces is a set of namespace to which objects belong.\n+optional",
  7040                      "type": "array",
  7041                      "items": {
  7042                          "type": "string"
  7043                      }
  7044                  },
  7045                  "nodeSelectors": {
  7046                      "description": "Map of string keys and values that can be used to select nodes.\nSelector which must match a node's labels,\nand objects must belong to these selected nodes.\n+optional",
  7047                      "type": "object",
  7048                      "additionalProperties": {
  7049                          "type": "string"
  7050                      }
  7051                  },
  7052                  "nodes": {
  7053                      "description": "Nodes is a set of node name and objects must belong to these nodes.\n+optional",
  7054                      "type": "array",
  7055                      "items": {
  7056                          "type": "string"
  7057                      }
  7058                  },
  7059                  "podPhaseSelectors": {
  7060                      "description": "PodPhaseSelectors is a set of condition of a pod at the current time.\nsupported value: Pending / Running / Succeeded / Failed / Unknown\n+optional",
  7061                      "type": "array",
  7062                      "items": {
  7063                          "type": "string"
  7064                      }
  7065                  },
  7066                  "pods": {
  7067                      "description": "Pods is a map of string keys and a set values that used to select pods.\nThe key defines the namespace which pods belong,\nand the each values is a set of pod names.\n+optional",
  7068                      "type": "object",
  7069                      "additionalProperties": {
  7070                          "type": "array",
  7071                          "items": {
  7072                              "type": "string"
  7073                          }
  7074                      }
  7075                  }
  7076              }
  7077          },
  7078          "v1alpha1.ProcessSpec": {
  7079              "type": "object",
  7080              "properties": {
  7081                  "process": {
  7082                      "description": "the process name or the process ID",
  7083                      "type": "string"
  7084                  },
  7085                  "recoverCmd": {
  7086                      "description": "the command to be run when recovering experiment",
  7087                      "type": "string"
  7088                  },
  7089                  "signal": {
  7090                      "description": "the signal number to send",
  7091                      "type": "integer"
  7092                  }
  7093              }
  7094          },
  7095          "v1alpha1.RateSpec": {
  7096              "type": "object",
  7097              "properties": {
  7098                  "rate": {
  7099                      "description": "Rate is the speed knob. Allows bit, kbit, mbit, gbit, tbit, bps, kbps, mbps, gbps, tbps unit. bps means bytes per second.",
  7100                      "type": "string"
  7101                  }
  7102              }
  7103          },
  7104          "v1alpha1.RedisCacheLimitSpec": {
  7105              "type": "object",
  7106              "properties": {
  7107                  "addr": {
  7108                      "description": "The adress of Redis server",
  7109                      "type": "string"
  7110                  },
  7111                  "cacheSize": {
  7112                      "description": "The size of ` + "`" + `maxmemory` + "`" + `",
  7113                      "type": "string"
  7114                  },
  7115                  "password": {
  7116                      "description": "The password of Redis server",
  7117                      "type": "string"
  7118                  },
  7119                  "percent": {
  7120                      "description": "Specifies maxmemory as a percentage of the original value",
  7121                      "type": "string"
  7122                  }
  7123              }
  7124          },
  7125          "v1alpha1.RedisExpirationSpec": {
  7126              "type": "object",
  7127              "properties": {
  7128                  "addr": {
  7129                      "description": "The adress of Redis server",
  7130                      "type": "string"
  7131                  },
  7132                  "expiration": {
  7133                      "description": "The expiration of the keys",
  7134                      "type": "string"
  7135                  },
  7136                  "key": {
  7137                      "description": "The keys to be expired",
  7138                      "type": "string"
  7139                  },
  7140                  "option": {
  7141                      "description": "Additional options for ` + "`" + `expiration` + "`" + `",
  7142                      "type": "string"
  7143                  },
  7144                  "password": {
  7145                      "description": "The password of Redis server",
  7146                      "type": "string"
  7147                  }
  7148              }
  7149          },
  7150          "v1alpha1.RedisPenetrationSpec": {
  7151              "type": "object",
  7152              "properties": {
  7153                  "addr": {
  7154                      "description": "The adress of Redis server",
  7155                      "type": "string"
  7156                  },
  7157                  "password": {
  7158                      "description": "The password of Redis server",
  7159                      "type": "string"
  7160                  },
  7161                  "requestNum": {
  7162                      "description": "The number of requests to be sent",
  7163                      "type": "integer"
  7164                  }
  7165              }
  7166          },
  7167          "v1alpha1.RedisSentinelRestartSpec": {
  7168              "type": "object",
  7169              "properties": {
  7170                  "addr": {
  7171                      "description": "The adress of Redis server",
  7172                      "type": "string"
  7173                  },
  7174                  "conf": {
  7175                      "description": "The path of Sentinel conf",
  7176                      "type": "string"
  7177                  },
  7178                  "flushConfig": {
  7179                      "description": "The control flag determines whether to flush config",
  7180                      "type": "boolean"
  7181                  },
  7182                  "password": {
  7183                      "description": "The password of Redis server",
  7184                      "type": "string"
  7185                  },
  7186                  "redisPath": {
  7187                      "description": "The path of ` + "`" + `redis-server` + "`" + ` command-line tool",
  7188                      "type": "boolean"
  7189                  }
  7190              }
  7191          },
  7192          "v1alpha1.RedisSentinelStopSpec": {
  7193              "type": "object",
  7194              "properties": {
  7195                  "addr": {
  7196                      "description": "The adress of Redis server",
  7197                      "type": "string"
  7198                  },
  7199                  "conf": {
  7200                      "description": "The path of Sentinel conf",
  7201                      "type": "string"
  7202                  },
  7203                  "flushConfig": {
  7204                      "description": "The control flag determines whether to flush config",
  7205                      "type": "boolean"
  7206                  },
  7207                  "password": {
  7208                      "description": "The password of Redis server",
  7209                      "type": "string"
  7210                  },
  7211                  "redisPath": {
  7212                      "description": "The path of ` + "`" + `redis-server` + "`" + ` command-line tool",
  7213                      "type": "boolean"
  7214                  }
  7215              }
  7216          },
  7217          "v1alpha1.ReorderSpec": {
  7218              "type": "object",
  7219              "properties": {
  7220                  "correlation": {
  7221                      "description": "+optional",
  7222                      "type": "string",
  7223                      "default": "0"
  7224                  },
  7225                  "gap": {
  7226                      "type": "integer"
  7227                  },
  7228                  "reorder": {
  7229                      "type": "string"
  7230                  }
  7231              }
  7232          },
  7233          "v1alpha1.Schedule": {
  7234              "type": "object",
  7235              "properties": {
  7236                  "annotations": {
  7237                      "description": "Annotations is an unstructured key value map stored with a resource that may be\nset by external tools to store and retrieve arbitrary metadata. They are not\nqueryable and should be preserved when modifying objects.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\n+optional",
  7238                      "type": "object",
  7239                      "additionalProperties": {
  7240                          "type": "string"
  7241                      }
  7242                  },
  7243                  "apiVersion": {
  7244                      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\n+optional",
  7245                      "type": "string"
  7246                  },
  7247                  "creationTimestamp": {
  7248                      "description": "CreationTimestamp is a timestamp representing the server time when this object was\ncreated. It is not guaranteed to be set in happens-before order across separate operations.\nClients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system.\nRead-only.\nNull for lists.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  7249                      "type": "string"
  7250                  },
  7251                  "deletionGracePeriodSeconds": {
  7252                      "description": "Number of seconds allowed for this object to gracefully terminate before\nit will be removed from the system. Only set when deletionTimestamp is also set.\nMay only be shortened.\nRead-only.\n+optional",
  7253                      "type": "integer"
  7254                  },
  7255                  "deletionTimestamp": {
  7256                      "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This\nfield is set by the server when a graceful deletion is requested by the user, and is not\ndirectly settable by a client. The resource is expected to be deleted (no longer visible\nfrom resource lists, and not reachable by name) after the time in this field, once the\nfinalizers list is empty. As long as the finalizers list contains items, deletion is blocked.\nOnce the deletionTimestamp is set, this value may not be unset or be set further into the\nfuture, although it may be shortened or the resource may be deleted prior to this time.\nFor example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react\nby sending a graceful termination signal to the containers in the pod. After that 30 seconds,\nthe Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,\nremove the pod from the API. In the presence of network partitions, this object may still\nexist after this timestamp, until an administrator or automated process can determine the\nresource is fully terminated.\nIf not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested.\nRead-only.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  7257                      "type": "string"
  7258                  },
  7259                  "finalizers": {
  7260                      "description": "Must be empty before the object is deleted from the registry. Each entry\nis an identifier for the responsible component that will remove the entry\nfrom the list. If the deletionTimestamp of the object is non-nil, entries\nin this list can only be removed.\nFinalizers may be processed and removed in any order.  Order is NOT enforced\nbecause it introduces significant risk of stuck finalizers.\nfinalizers is a shared field, any actor with permission can reorder it.\nIf the finalizer list is processed in order, then this can lead to a situation\nin which the component responsible for the first finalizer in the list is\nwaiting for a signal (field value, external system, or other) produced by a\ncomponent responsible for a finalizer later in the list, resulting in a deadlock.\nWithout enforced ordering finalizers are free to order amongst themselves and\nare not vulnerable to ordering changes in the list.\n+optional\n+patchStrategy=merge",
  7261                      "type": "array",
  7262                      "items": {
  7263                          "type": "string"
  7264                      }
  7265                  },
  7266                  "generateName": {
  7267                      "description": "GenerateName is an optional prefix, used by the server, to generate a unique\nname ONLY IF the Name field has not been provided.\nIf this field is used, the name returned to the client will be different\nthan the name passed. This value will also be combined with a unique suffix.\nThe provided value has the same validation rules as the Name field,\nand may be truncated by the length of the suffix required to make the value\nunique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\n+optional",
  7268                      "type": "string"
  7269                  },
  7270                  "generation": {
  7271                      "description": "A sequence number representing a specific generation of the desired state.\nPopulated by the system. Read-only.\n+optional",
  7272                      "type": "integer"
  7273                  },
  7274                  "kind": {
  7275                      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n+optional",
  7276                      "type": "string"
  7277                  },
  7278                  "labels": {
  7279                      "description": "Map of string keys and values that can be used to organize and categorize\n(scope and select) objects. May match selectors of replication controllers\nand services.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\n+optional",
  7280                      "type": "object",
  7281                      "additionalProperties": {
  7282                          "type": "string"
  7283                      }
  7284                  },
  7285                  "managedFields": {
  7286                      "description": "ManagedFields maps workflow-id and version to the set of fields\nthat are managed by that workflow. This is mostly for internal\nhousekeeping, and users typically shouldn't need to set or\nunderstand this field. A workflow can be the user's name, a\ncontroller's name, or the name of a specific apply path like\n\"ci-cd\". The set of fields is always in the version that the\nworkflow used when modifying the object.\n\n+optional",
  7287                      "type": "array",
  7288                      "items": {
  7289                          "$ref": "#/definitions/v1.ManagedFieldsEntry"
  7290                      }
  7291                  },
  7292                  "name": {
  7293                      "description": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\n+optional",
  7294                      "type": "string"
  7295                  },
  7296                  "namespace": {
  7297                      "description": "Namespace defines the space within which each name must be unique. An empty namespace is\nequivalent to the \"default\" namespace, but \"default\" is the canonical representation.\nNot all objects are required to be scoped to a namespace - the value of this field for\nthose objects will be empty.\n\nMust be a DNS_LABEL.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces\n+optional",
  7298                      "type": "string"
  7299                  },
  7300                  "ownerReferences": {
  7301                      "description": "List of objects depended by this object. If ALL objects in the list have\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\nthen an entry in this list will point to this controller, with the controller field set to true.\nThere cannot be more than one managing controller.\n+optional\n+patchMergeKey=uid\n+patchStrategy=merge",
  7302                      "type": "array",
  7303                      "items": {
  7304                          "$ref": "#/definitions/v1.OwnerReference"
  7305                      }
  7306                  },
  7307                  "resourceVersion": {
  7308                      "description": "An opaque value that represents the internal version of this object that can\nbe used by clients to determine when objects have changed. May be used for optimistic\nconcurrency, change detection, and the watch operation on a resource or set of resources.\nClients must treat these values as opaque and passed unmodified back to the server.\nThey may only be valid for a particular resource or set of resources.\n\nPopulated by the system.\nRead-only.\nValue must be treated as opaque by clients and .\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional",
  7309                      "type": "string"
  7310                  },
  7311                  "selfLink": {
  7312                      "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.\n+optional",
  7313                      "type": "string"
  7314                  },
  7315                  "spec": {
  7316                      "$ref": "#/definitions/v1alpha1.ScheduleSpec"
  7317                  },
  7318                  "status": {
  7319                      "description": "+optional",
  7320                      "$ref": "#/definitions/v1alpha1.ScheduleStatus"
  7321                  },
  7322                  "uid": {
  7323                      "description": "UID is the unique in time and space value for this object. It is typically generated by\nthe server on successful creation of a resource and is not allowed to change on PUT\noperations.\n\nPopulated by the system.\nRead-only.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\n+optional",
  7324                      "type": "string"
  7325                  }
  7326              }
  7327          },
  7328          "v1alpha1.ScheduleSpec": {
  7329              "type": "object",
  7330              "properties": {
  7331                  "awsChaos": {
  7332                      "description": "+optional",
  7333                      "$ref": "#/definitions/v1alpha1.AWSChaosSpec"
  7334                  },
  7335                  "azureChaos": {
  7336                      "description": "+optional",
  7337                      "$ref": "#/definitions/v1alpha1.AzureChaosSpec"
  7338                  },
  7339                  "blockChaos": {
  7340                      "description": "+optional",
  7341                      "$ref": "#/definitions/v1alpha1.BlockChaosSpec"
  7342                  },
  7343                  "concurrencyPolicy": {
  7344                      "description": "+optional\n+kubebuilder:default=Forbid\n+kubebuilder:validation:Enum=Forbid;Allow",
  7345                      "type": "string"
  7346                  },
  7347                  "dnsChaos": {
  7348                      "description": "+optional",
  7349                      "$ref": "#/definitions/v1alpha1.DNSChaosSpec"
  7350                  },
  7351                  "gcpChaos": {
  7352                      "description": "+optional",
  7353                      "$ref": "#/definitions/v1alpha1.GCPChaosSpec"
  7354                  },
  7355                  "historyLimit": {
  7356                      "description": "+optional\n+kubebuilder:validation:Minimum=1",
  7357                      "type": "integer"
  7358                  },
  7359                  "httpChaos": {
  7360                      "description": "+optional",
  7361                      "$ref": "#/definitions/v1alpha1.HTTPChaosSpec"
  7362                  },
  7363                  "ioChaos": {
  7364                      "description": "+optional",
  7365                      "$ref": "#/definitions/v1alpha1.IOChaosSpec"
  7366                  },
  7367                  "jvmChaos": {
  7368                      "description": "+optional",
  7369                      "$ref": "#/definitions/v1alpha1.JVMChaosSpec"
  7370                  },
  7371                  "kernelChaos": {
  7372                      "description": "+optional",
  7373                      "$ref": "#/definitions/v1alpha1.KernelChaosSpec"
  7374                  },
  7375                  "networkChaos": {
  7376                      "description": "+optional",
  7377                      "$ref": "#/definitions/v1alpha1.NetworkChaosSpec"
  7378                  },
  7379                  "physicalmachineChaos": {
  7380                      "description": "+optional",
  7381                      "$ref": "#/definitions/v1alpha1.PhysicalMachineChaosSpec"
  7382                  },
  7383                  "podChaos": {
  7384                      "description": "+optional",
  7385                      "$ref": "#/definitions/v1alpha1.PodChaosSpec"
  7386                  },
  7387                  "schedule": {
  7388                      "type": "string"
  7389                  },
  7390                  "startingDeadlineSeconds": {
  7391                      "description": "+optional\n+nullable\n+kubebuilder:validation:Minimum=0\n+kubebuilder:validation:ExclusiveMinimum=true",
  7392                      "type": "integer"
  7393                  },
  7394                  "stressChaos": {
  7395                      "description": "+optional",
  7396                      "$ref": "#/definitions/v1alpha1.StressChaosSpec"
  7397                  },
  7398                  "timeChaos": {
  7399                      "description": "+optional",
  7400                      "$ref": "#/definitions/v1alpha1.TimeChaosSpec"
  7401                  },
  7402                  "type": {
  7403                      "type": "string"
  7404                  },
  7405                  "workflow": {
  7406                      "description": "+optional",
  7407                      "$ref": "#/definitions/v1alpha1.WorkflowSpec"
  7408                  }
  7409              }
  7410          },
  7411          "v1alpha1.ScheduleStatus": {
  7412              "type": "object",
  7413              "properties": {
  7414                  "active": {
  7415                      "description": "+optional",
  7416                      "type": "array",
  7417                      "items": {
  7418                          "$ref": "#/definitions/v1.ObjectReference"
  7419                      }
  7420                  },
  7421                  "time": {
  7422                      "description": "+optional\n+nullable",
  7423                      "type": "string"
  7424                  }
  7425              }
  7426          },
  7427          "v1alpha1.StatusCheckSpec": {
  7428              "type": "object",
  7429              "properties": {
  7430                  "duration": {
  7431                      "description": "Duration defines the duration of the whole status check if the\nnumber of failed execution does not exceed the failure threshold.\nDuration is available to both ` + "`" + `Synchronous` + "`" + ` and ` + "`" + `Continuous` + "`" + ` mode.\nA duration string is a possibly signed sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\", \"-1.5h\" or \"2h45m\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+optional",
  7432                      "type": "string"
  7433                  },
  7434                  "failureThreshold": {
  7435                      "description": "FailureThreshold defines the minimum consecutive failure\nfor the status check to be considered failed.\n+optional\n+kubebuilder:default=3\n+kubebuilder:validation:Minimum=1",
  7436                      "type": "integer"
  7437                  },
  7438                  "http": {
  7439                      "description": "+optional",
  7440                      "$ref": "#/definitions/v1alpha1.HTTPStatusCheck"
  7441                  },
  7442                  "intervalSeconds": {
  7443                      "description": "IntervalSeconds defines how often (in seconds) to perform\nan execution of status check.\n+optional\n+kubebuilder:default=10\n+kubebuilder:validation:Minimum=1",
  7444                      "type": "integer"
  7445                  },
  7446                  "mode": {
  7447                      "description": "Mode defines the execution mode of the status check.\nSupport type: Synchronous / Continuous\n+optional\n+kubebuilder:validation:Enum=Synchronous;Continuous",
  7448                      "type": "string"
  7449                  },
  7450                  "recordsHistoryLimit": {
  7451                      "description": "RecordsHistoryLimit defines the number of record to retain.\n+optional\n+kubebuilder:default=100\n+kubebuilder:validation:Minimum=1\n+kubebuilder:validation:Maximum=1000",
  7452                      "type": "integer"
  7453                  },
  7454                  "successThreshold": {
  7455                      "description": "SuccessThreshold defines the minimum consecutive successes\nfor the status check to be considered successful.\nSuccessThreshold only works for ` + "`" + `Synchronous` + "`" + ` mode.\n+optional\n+kubebuilder:default=1\n+kubebuilder:validation:Minimum=1",
  7456                      "type": "integer"
  7457                  },
  7458                  "timeoutSeconds": {
  7459                      "description": "TimeoutSeconds defines the number of seconds after which\nan execution of status check times out.\n+optional\n+kubebuilder:default=1\n+kubebuilder:validation:Minimum=1",
  7460                      "type": "integer"
  7461                  },
  7462                  "type": {
  7463                      "description": "Type defines the specific status check type.\nSupport type: HTTP\n+kubebuilder:default=HTTP\n+kubebuilder:validation:Enum=HTTP",
  7464                      "type": "string"
  7465                  }
  7466              }
  7467          },
  7468          "v1alpha1.StatusCheckTemplate": {
  7469              "type": "object",
  7470              "properties": {
  7471                  "duration": {
  7472                      "description": "Duration defines the duration of the whole status check if the\nnumber of failed execution does not exceed the failure threshold.\nDuration is available to both ` + "`" + `Synchronous` + "`" + ` and ` + "`" + `Continuous` + "`" + ` mode.\nA duration string is a possibly signed sequence of\ndecimal numbers, each with optional fraction and a unit suffix,\nsuch as \"300ms\", \"-1.5h\" or \"2h45m\".\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n+optional",
  7473                      "type": "string"
  7474                  },
  7475                  "failureThreshold": {
  7476                      "description": "FailureThreshold defines the minimum consecutive failure\nfor the status check to be considered failed.\n+optional\n+kubebuilder:default=3\n+kubebuilder:validation:Minimum=1",
  7477                      "type": "integer"
  7478                  },
  7479                  "http": {
  7480                      "description": "+optional",
  7481                      "$ref": "#/definitions/v1alpha1.HTTPStatusCheck"
  7482                  },
  7483                  "intervalSeconds": {
  7484                      "description": "IntervalSeconds defines how often (in seconds) to perform\nan execution of status check.\n+optional\n+kubebuilder:default=10\n+kubebuilder:validation:Minimum=1",
  7485                      "type": "integer"
  7486                  },
  7487                  "mode": {
  7488                      "description": "Mode defines the execution mode of the status check.\nSupport type: Synchronous / Continuous\n+optional\n+kubebuilder:validation:Enum=Synchronous;Continuous",
  7489                      "type": "string"
  7490                  },
  7491                  "recordsHistoryLimit": {
  7492                      "description": "RecordsHistoryLimit defines the number of record to retain.\n+optional\n+kubebuilder:default=100\n+kubebuilder:validation:Minimum=1\n+kubebuilder:validation:Maximum=1000",
  7493                      "type": "integer"
  7494                  },
  7495                  "successThreshold": {
  7496                      "description": "SuccessThreshold defines the minimum consecutive successes\nfor the status check to be considered successful.\nSuccessThreshold only works for ` + "`" + `Synchronous` + "`" + ` mode.\n+optional\n+kubebuilder:default=1\n+kubebuilder:validation:Minimum=1",
  7497                      "type": "integer"
  7498                  },
  7499                  "timeoutSeconds": {
  7500                      "description": "TimeoutSeconds defines the number of seconds after which\nan execution of status check times out.\n+optional\n+kubebuilder:default=1\n+kubebuilder:validation:Minimum=1",
  7501                      "type": "integer"
  7502                  },
  7503                  "type": {
  7504                      "description": "Type defines the specific status check type.\nSupport type: HTTP\n+kubebuilder:default=HTTP\n+kubebuilder:validation:Enum=HTTP",
  7505                      "type": "string"
  7506                  }
  7507              }
  7508          },
  7509          "v1alpha1.StressCPUSpec": {
  7510              "type": "object",
  7511              "properties": {
  7512                  "load": {
  7513                      "description": "specifies P percent loading per CPU worker. 0 is effectively a sleep (no load) and 100 is full loading.",
  7514                      "type": "integer"
  7515                  },
  7516                  "options": {
  7517                      "description": "extend stress-ng options",
  7518                      "type": "array",
  7519                      "items": {
  7520                          "type": "string"
  7521                      }
  7522                  },
  7523                  "workers": {
  7524                      "description": "specifies N workers to apply the stressor.",
  7525                      "type": "integer"
  7526                  }
  7527              }
  7528          },
  7529          "v1alpha1.StressChaosSpec": {
  7530              "type": "object",
  7531              "properties": {
  7532                  "containerNames": {
  7533                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  7534                      "type": "array",
  7535                      "items": {
  7536                          "type": "string"
  7537                      }
  7538                  },
  7539                  "duration": {
  7540                      "description": "Duration represents the duration of the chaos action\n+optional",
  7541                      "type": "string"
  7542                  },
  7543                  "mode": {
  7544                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  7545                      "type": "string"
  7546                  },
  7547                  "remoteCluster": {
  7548                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  7549                      "type": "string"
  7550                  },
  7551                  "selector": {
  7552                      "description": "Selector is used to select pods that are used to inject chaos action.",
  7553                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  7554                  },
  7555                  "stressngStressors": {
  7556                      "description": "StressngStressors defines plenty of stressors just like ` + "`" + `Stressors` + "`" + ` except that it's an experimental\nfeature and more powerful. You can define stressors in ` + "`" + `stress-ng` + "`" + ` (see also ` + "`" + `man stress-ng` + "`" + `) dialect,\nhowever not all of the supported stressors are well tested. It maybe retired in later releases. You\nshould always use ` + "`" + `Stressors` + "`" + ` to define the stressors and use this only when you want more stressors\nunsupported by ` + "`" + `Stressors` + "`" + `. When both ` + "`" + `StressngStressors` + "`" + ` and ` + "`" + `Stressors` + "`" + ` are defined, ` + "`" + `StressngStressors` + "`" + `\nwins.\n+optional",
  7557                      "type": "string"
  7558                  },
  7559                  "stressors": {
  7560                      "description": "Stressors defines plenty of stressors supported to stress system components out.\nYou can use one or more of them to make up various kinds of stresses. At least\none of the stressors should be specified.\n+optional",
  7561                      "$ref": "#/definitions/v1alpha1.Stressors"
  7562                  },
  7563                  "value": {
  7564                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  7565                      "type": "string"
  7566                  }
  7567              }
  7568          },
  7569          "v1alpha1.StressMemorySpec": {
  7570              "type": "object",
  7571              "properties": {
  7572                  "options": {
  7573                      "description": "extend stress-ng options",
  7574                      "type": "array",
  7575                      "items": {
  7576                          "type": "string"
  7577                      }
  7578                  },
  7579                  "size": {
  7580                      "description": "specifies N bytes consumed per vm worker, default is the total available memory.\nOne can specify the size as % of total available memory or in units of B, KB/KiB, MB/MiB, GB/GiB, TB/TiB..",
  7581                      "type": "string"
  7582                  }
  7583              }
  7584          },
  7585          "v1alpha1.Stressors": {
  7586              "type": "object",
  7587              "properties": {
  7588                  "cpu": {
  7589                      "description": "CPUStressor stresses CPU out\n+optional",
  7590                      "$ref": "#/definitions/v1alpha1.CPUStressor"
  7591                  },
  7592                  "memory": {
  7593                      "description": "MemoryStressor stresses virtual memory out\n+optional",
  7594                      "$ref": "#/definitions/v1alpha1.MemoryStressor"
  7595                  }
  7596              }
  7597          },
  7598          "v1alpha1.Task": {
  7599              "type": "object",
  7600              "properties": {
  7601                  "container": {
  7602                      "description": "Container is the main container image to run in the pod",
  7603                      "$ref": "#/definitions/v1.Container"
  7604                  },
  7605                  "volumes": {
  7606                      "description": "Volumes is a list of volumes that can be mounted by containers in a template.\n+patchStrategy=merge\n+patchMergeKey=name",
  7607                      "type": "array",
  7608                      "items": {
  7609                          "$ref": "#/definitions/v1.Volume"
  7610                      }
  7611                  }
  7612              }
  7613          },
  7614          "v1alpha1.Template": {
  7615              "type": "object",
  7616              "properties": {
  7617                  "abortWithStatusCheck": {
  7618                      "description": "AbortWithStatusCheck describe whether to abort the workflow when the failure threshold of StatusCheck is exceeded.\nOnly used when Type is TypeStatusCheck.\n+optional",
  7619                      "type": "boolean"
  7620                  },
  7621                  "awsChaos": {
  7622                      "description": "+optional",
  7623                      "$ref": "#/definitions/v1alpha1.AWSChaosSpec"
  7624                  },
  7625                  "azureChaos": {
  7626                      "description": "+optional",
  7627                      "$ref": "#/definitions/v1alpha1.AzureChaosSpec"
  7628                  },
  7629                  "blockChaos": {
  7630                      "description": "+optional",
  7631                      "$ref": "#/definitions/v1alpha1.BlockChaosSpec"
  7632                  },
  7633                  "children": {
  7634                      "description": "Children describes the children steps of serial or parallel node. Only used when Type is TypeSerial or TypeParallel.\n+optional",
  7635                      "type": "array",
  7636                      "items": {
  7637                          "type": "string"
  7638                      }
  7639                  },
  7640                  "conditionalBranches": {
  7641                      "description": "ConditionalBranches describes the conditional branches of custom tasks. Only used when Type is TypeTask.\n+optional",
  7642                      "type": "array",
  7643                      "items": {
  7644                          "$ref": "#/definitions/v1alpha1.ConditionalBranch"
  7645                      }
  7646                  },
  7647                  "deadline": {
  7648                      "description": "+optional",
  7649                      "type": "string"
  7650                  },
  7651                  "dnsChaos": {
  7652                      "description": "+optional",
  7653                      "$ref": "#/definitions/v1alpha1.DNSChaosSpec"
  7654                  },
  7655                  "gcpChaos": {
  7656                      "description": "+optional",
  7657                      "$ref": "#/definitions/v1alpha1.GCPChaosSpec"
  7658                  },
  7659                  "httpChaos": {
  7660                      "description": "+optional",
  7661                      "$ref": "#/definitions/v1alpha1.HTTPChaosSpec"
  7662                  },
  7663                  "ioChaos": {
  7664                      "description": "+optional",
  7665                      "$ref": "#/definitions/v1alpha1.IOChaosSpec"
  7666                  },
  7667                  "jvmChaos": {
  7668                      "description": "+optional",
  7669                      "$ref": "#/definitions/v1alpha1.JVMChaosSpec"
  7670                  },
  7671                  "kernelChaos": {
  7672                      "description": "+optional",
  7673                      "$ref": "#/definitions/v1alpha1.KernelChaosSpec"
  7674                  },
  7675                  "name": {
  7676                      "type": "string"
  7677                  },
  7678                  "networkChaos": {
  7679                      "description": "+optional",
  7680                      "$ref": "#/definitions/v1alpha1.NetworkChaosSpec"
  7681                  },
  7682                  "physicalmachineChaos": {
  7683                      "description": "+optional",
  7684                      "$ref": "#/definitions/v1alpha1.PhysicalMachineChaosSpec"
  7685                  },
  7686                  "podChaos": {
  7687                      "description": "+optional",
  7688                      "$ref": "#/definitions/v1alpha1.PodChaosSpec"
  7689                  },
  7690                  "schedule": {
  7691                      "description": "Schedule describe the Schedule(describing scheduled chaos) to be injected with chaos nodes. Only used when Type is TypeSchedule.\n+optional",
  7692                      "$ref": "#/definitions/v1alpha1.ChaosOnlyScheduleSpec"
  7693                  },
  7694                  "statusCheck": {
  7695                      "description": "StatusCheck describe the behavior of StatusCheck. Only used when Type is TypeStatusCheck.\n+optional",
  7696                      "$ref": "#/definitions/v1alpha1.StatusCheckSpec"
  7697                  },
  7698                  "stressChaos": {
  7699                      "description": "+optional",
  7700                      "$ref": "#/definitions/v1alpha1.StressChaosSpec"
  7701                  },
  7702                  "task": {
  7703                      "description": "Task describes the behavior of the custom task. Only used when Type is TypeTask.\n+optional",
  7704                      "$ref": "#/definitions/v1alpha1.Task"
  7705                  },
  7706                  "templateType": {
  7707                      "type": "string"
  7708                  },
  7709                  "timeChaos": {
  7710                      "description": "+optional",
  7711                      "$ref": "#/definitions/v1alpha1.TimeChaosSpec"
  7712                  }
  7713              }
  7714          },
  7715          "v1alpha1.TimeChaosSpec": {
  7716              "type": "object",
  7717              "properties": {
  7718                  "clockIds": {
  7719                      "description": "ClockIds defines all affected clock id\nAll available options are [\"CLOCK_REALTIME\",\"CLOCK_MONOTONIC\",\"CLOCK_PROCESS_CPUTIME_ID\",\"CLOCK_THREAD_CPUTIME_ID\",\n\"CLOCK_MONOTONIC_RAW\",\"CLOCK_REALTIME_COARSE\",\"CLOCK_MONOTONIC_COARSE\",\"CLOCK_BOOTTIME\",\"CLOCK_REALTIME_ALARM\",\n\"CLOCK_BOOTTIME_ALARM\"]\nDefault value is [\"CLOCK_REALTIME\"]",
  7720                      "type": "array",
  7721                      "items": {
  7722                          "type": "string"
  7723                      }
  7724                  },
  7725                  "containerNames": {
  7726                      "description": "ContainerNames indicates list of the name of affected container.\nIf not set, the first container will be injected\n+optional",
  7727                      "type": "array",
  7728                      "items": {
  7729                          "type": "string"
  7730                      }
  7731                  },
  7732                  "duration": {
  7733                      "description": "Duration represents the duration of the chaos action",
  7734                      "type": "string"
  7735                  },
  7736                  "mode": {
  7737                      "description": "Mode defines the mode to run chaos action.\nSupported mode: one / all / fixed / fixed-percent / random-max-percent\n+kubebuilder:validation:Enum=one;all;fixed;fixed-percent;random-max-percent",
  7738                      "type": "string"
  7739                  },
  7740                  "remoteCluster": {
  7741                      "description": "RemoteCluster represents the remote cluster where the chaos will be deployed\n+optional",
  7742                      "type": "string"
  7743                  },
  7744                  "selector": {
  7745                      "description": "Selector is used to select pods that are used to inject chaos action.",
  7746                      "$ref": "#/definitions/v1alpha1.PodSelectorSpec"
  7747                  },
  7748                  "timeOffset": {
  7749                      "description": "TimeOffset defines the delta time of injected program. It's a possibly signed sequence of decimal numbers, such as\n\"300ms\", \"-1.5h\" or \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".",
  7750                      "type": "string"
  7751                  },
  7752                  "value": {
  7753                      "description": "Value is required when the mode is set to ` + "`" + `FixedMode` + "`" + ` / ` + "`" + `FixedPercentMode` + "`" + ` / ` + "`" + `RandomMaxPercentMode` + "`" + `.\nIf ` + "`" + `FixedMode` + "`" + `, provide an integer of pods to do chaos action.\nIf ` + "`" + `FixedPercentMode` + "`" + `, provide a number from 0-100 to specify the percent of pods the server can do chaos action.\nIF ` + "`" + `RandomMaxPercentMode` + "`" + `,  provide a number from 0-100 to specify the max percent of pods to do chaos action\n+optional",
  7754                      "type": "string"
  7755                  }
  7756              }
  7757          },
  7758          "v1alpha1.Timespec": {
  7759              "type": "object",
  7760              "properties": {
  7761                  "nsec": {
  7762                      "type": "integer"
  7763                  },
  7764                  "sec": {
  7765                      "type": "integer"
  7766                  }
  7767              }
  7768          },
  7769          "v1alpha1.UserDefinedSpec": {
  7770              "type": "object",
  7771              "properties": {
  7772                  "attackCmd": {
  7773                      "description": "The command to be executed when attack",
  7774                      "type": "string"
  7775                  },
  7776                  "recoverCmd": {
  7777                      "description": "The command to be executed when recover",
  7778                      "type": "string"
  7779                  }
  7780              }
  7781          },
  7782          "v1alpha1.VMSpec": {
  7783              "type": "object",
  7784              "properties": {
  7785                  "vm-name": {
  7786                      "description": "The name of the VM to be injected",
  7787                      "type": "string"
  7788                  }
  7789              }
  7790          },
  7791          "v1alpha1.Workflow": {
  7792              "type": "object",
  7793              "properties": {
  7794                  "annotations": {
  7795                      "description": "Annotations is an unstructured key value map stored with a resource that may be\nset by external tools to store and retrieve arbitrary metadata. They are not\nqueryable and should be preserved when modifying objects.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations\n+optional",
  7796                      "type": "object",
  7797                      "additionalProperties": {
  7798                          "type": "string"
  7799                      }
  7800                  },
  7801                  "apiVersion": {
  7802                      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\n+optional",
  7803                      "type": "string"
  7804                  },
  7805                  "creationTimestamp": {
  7806                      "description": "CreationTimestamp is a timestamp representing the server time when this object was\ncreated. It is not guaranteed to be set in happens-before order across separate operations.\nClients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system.\nRead-only.\nNull for lists.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  7807                      "type": "string"
  7808                  },
  7809                  "deletionGracePeriodSeconds": {
  7810                      "description": "Number of seconds allowed for this object to gracefully terminate before\nit will be removed from the system. Only set when deletionTimestamp is also set.\nMay only be shortened.\nRead-only.\n+optional",
  7811                      "type": "integer"
  7812                  },
  7813                  "deletionTimestamp": {
  7814                      "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This\nfield is set by the server when a graceful deletion is requested by the user, and is not\ndirectly settable by a client. The resource is expected to be deleted (no longer visible\nfrom resource lists, and not reachable by name) after the time in this field, once the\nfinalizers list is empty. As long as the finalizers list contains items, deletion is blocked.\nOnce the deletionTimestamp is set, this value may not be unset or be set further into the\nfuture, although it may be shortened or the resource may be deleted prior to this time.\nFor example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react\nby sending a graceful termination signal to the containers in the pod. After that 30 seconds,\nthe Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup,\nremove the pod from the API. In the presence of network partitions, this object may still\nexist after this timestamp, until an administrator or automated process can determine the\nresource is fully terminated.\nIf not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested.\nRead-only.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n+optional",
  7815                      "type": "string"
  7816                  },
  7817                  "finalizers": {
  7818                      "description": "Must be empty before the object is deleted from the registry. Each entry\nis an identifier for the responsible component that will remove the entry\nfrom the list. If the deletionTimestamp of the object is non-nil, entries\nin this list can only be removed.\nFinalizers may be processed and removed in any order.  Order is NOT enforced\nbecause it introduces significant risk of stuck finalizers.\nfinalizers is a shared field, any actor with permission can reorder it.\nIf the finalizer list is processed in order, then this can lead to a situation\nin which the component responsible for the first finalizer in the list is\nwaiting for a signal (field value, external system, or other) produced by a\ncomponent responsible for a finalizer later in the list, resulting in a deadlock.\nWithout enforced ordering finalizers are free to order amongst themselves and\nare not vulnerable to ordering changes in the list.\n+optional\n+patchStrategy=merge",
  7819                      "type": "array",
  7820                      "items": {
  7821                          "type": "string"
  7822                      }
  7823                  },
  7824                  "generateName": {
  7825                      "description": "GenerateName is an optional prefix, used by the server, to generate a unique\nname ONLY IF the Name field has not been provided.\nIf this field is used, the name returned to the client will be different\nthan the name passed. This value will also be combined with a unique suffix.\nThe provided value has the same validation rules as the Name field,\nand may be truncated by the length of the suffix required to make the value\nunique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\n+optional",
  7826                      "type": "string"
  7827                  },
  7828                  "generation": {
  7829                      "description": "A sequence number representing a specific generation of the desired state.\nPopulated by the system. Read-only.\n+optional",
  7830                      "type": "integer"
  7831                  },
  7832                  "kind": {
  7833                      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n+optional",
  7834                      "type": "string"
  7835                  },
  7836                  "labels": {
  7837                      "description": "Map of string keys and values that can be used to organize and categorize\n(scope and select) objects. May match selectors of replication controllers\nand services.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels\n+optional",
  7838                      "type": "object",
  7839                      "additionalProperties": {
  7840                          "type": "string"
  7841                      }
  7842                  },
  7843                  "managedFields": {
  7844                      "description": "ManagedFields maps workflow-id and version to the set of fields\nthat are managed by that workflow. This is mostly for internal\nhousekeeping, and users typically shouldn't need to set or\nunderstand this field. A workflow can be the user's name, a\ncontroller's name, or the name of a specific apply path like\n\"ci-cd\". The set of fields is always in the version that the\nworkflow used when modifying the object.\n\n+optional",
  7845                      "type": "array",
  7846                      "items": {
  7847                          "$ref": "#/definitions/v1.ManagedFieldsEntry"
  7848                      }
  7849                  },
  7850                  "name": {
  7851                      "description": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names\n+optional",
  7852                      "type": "string"
  7853                  },
  7854                  "namespace": {
  7855                      "description": "Namespace defines the space within which each name must be unique. An empty namespace is\nequivalent to the \"default\" namespace, but \"default\" is the canonical representation.\nNot all objects are required to be scoped to a namespace - the value of this field for\nthose objects will be empty.\n\nMust be a DNS_LABEL.\nCannot be updated.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces\n+optional",
  7856                      "type": "string"
  7857                  },
  7858                  "ownerReferences": {
  7859                      "description": "List of objects depended by this object. If ALL objects in the list have\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\nthen an entry in this list will point to this controller, with the controller field set to true.\nThere cannot be more than one managing controller.\n+optional\n+patchMergeKey=uid\n+patchStrategy=merge",
  7860                      "type": "array",
  7861                      "items": {
  7862                          "$ref": "#/definitions/v1.OwnerReference"
  7863                      }
  7864                  },
  7865                  "resourceVersion": {
  7866                      "description": "An opaque value that represents the internal version of this object that can\nbe used by clients to determine when objects have changed. May be used for optimistic\nconcurrency, change detection, and the watch operation on a resource or set of resources.\nClients must treat these values as opaque and passed unmodified back to the server.\nThey may only be valid for a particular resource or set of resources.\n\nPopulated by the system.\nRead-only.\nValue must be treated as opaque by clients and .\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional",
  7867                      "type": "string"
  7868                  },
  7869                  "selfLink": {
  7870                      "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.\n+optional",
  7871                      "type": "string"
  7872                  },
  7873                  "spec": {
  7874                      "description": "Spec defines the behavior of a workflow",
  7875                      "$ref": "#/definitions/v1alpha1.WorkflowSpec"
  7876                  },
  7877                  "status": {
  7878                      "description": "+optional\nMost recently observed status of the workflow",
  7879                      "$ref": "#/definitions/v1alpha1.WorkflowStatus"
  7880                  },
  7881                  "uid": {
  7882                      "description": "UID is the unique in time and space value for this object. It is typically generated by\nthe server on successful creation of a resource and is not allowed to change on PUT\noperations.\n\nPopulated by the system.\nRead-only.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids\n+optional",
  7883                      "type": "string"
  7884                  }
  7885              }
  7886          },
  7887          "v1alpha1.WorkflowCondition": {
  7888              "type": "object",
  7889              "properties": {
  7890                  "reason": {
  7891                      "type": "string"
  7892                  },
  7893                  "startTime": {
  7894                      "type": "string"
  7895                  },
  7896                  "status": {
  7897                      "type": "string"
  7898                  },
  7899                  "type": {
  7900                      "type": "string"
  7901                  }
  7902              }
  7903          },
  7904          "v1alpha1.WorkflowSpec": {
  7905              "type": "object",
  7906              "properties": {
  7907                  "entry": {
  7908                      "type": "string"
  7909                  },
  7910                  "templates": {
  7911                      "type": "array",
  7912                      "items": {
  7913                          "$ref": "#/definitions/v1alpha1.Template"
  7914                      }
  7915                  }
  7916              }
  7917          },
  7918          "v1alpha1.WorkflowStatus": {
  7919              "type": "object",
  7920              "properties": {
  7921                  "conditions": {
  7922                      "description": "Represents the latest available observations of a workflow's current state.\n+optional\n+patchMergeKey=type\n+patchStrategy=merge",
  7923                      "type": "array",
  7924                      "items": {
  7925                          "$ref": "#/definitions/v1alpha1.WorkflowCondition"
  7926                      }
  7927                  },
  7928                  "endTime": {
  7929                      "description": "+optional",
  7930                      "type": "string"
  7931                  },
  7932                  "entryNode": {
  7933                      "description": "+optional",
  7934                      "type": "string"
  7935                  },
  7936                  "startTime": {
  7937                      "description": "+optional",
  7938                      "type": "string"
  7939                  }
  7940              }
  7941          }
  7942      }
  7943  }`
  7944  
  7945  // SwaggerInfo holds exported Swagger Info so clients can modify it
  7946  var SwaggerInfo = &swag.Spec{
  7947  	Version:          "2.5",
  7948  	Host:             "",
  7949  	BasePath:         "/api",
  7950  	Schemes:          []string{},
  7951  	Title:            "Chaos Mesh Dashboard API",
  7952  	Description:      "Swagger for Chaos Mesh Dashboard. If you encounter any problems with API, please click on the issues link below to report.",
  7953  	InfoInstanceName: "swagger",
  7954  	SwaggerTemplate:  docTemplate,
  7955  }
  7956  
  7957  func init() {
  7958  	swag.Register(SwaggerInfo.InstanceName(), SwaggerInfo)
  7959  }
  7960