Skip to content

Commit

Permalink
Merge pull request #511 from openinfradev/release
Browse files Browse the repository at this point in the history
20240523 release to develop back merge
  • Loading branch information
ktkfree authored May 23, 2024
2 parents 0906ad3 + cd0d093 commit 2bedb1b
Show file tree
Hide file tree
Showing 35 changed files with 906 additions and 585 deletions.
119 changes: 107 additions & 12 deletions api/swagger/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6622,7 +6622,7 @@ const docTemplate = `{
}
}
},
"/organizations/{organizationId}/projects/{projectId}/kube-config": {
"/organizations/{organizationId}/projects/{projectId}/kubeconfig": {
"get": {
"security": [
{
Expand Down Expand Up @@ -7463,7 +7463,7 @@ const docTemplate = `{
}
}
},
"/organizations/{organizationId}/projects/{projectId}/namespaces/{projectNamespace}/stacks/{stackId}/kube-config": {
"/organizations/{organizationId}/projects/{projectId}/namespaces/{projectNamespace}/stacks/{stackId}/kubeconfig": {
"get": {
"security": [
{
Expand Down Expand Up @@ -7515,7 +7515,7 @@ const docTemplate = `{
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/github_com_openinfradev_tks-api_pkg_domain.GetProjectNamespaceKubeConfigResponse"
"$ref": "#/definitions/github_com_openinfradev_tks-api_pkg_domain.GetProjectNamespaceKubeconfigResponse"
}
}
}
Expand Down Expand Up @@ -8614,7 +8614,7 @@ const docTemplate = `{
"JWT": []
}
],
"description": "Get KubeConfig by stack",
"description": "Get Kubeconfig by stack",
"consumes": [
"application/json"
],
Expand All @@ -8624,7 +8624,7 @@ const docTemplate = `{
"tags": [
"Stacks"
],
"summary": "Get KubeConfig by stack",
"summary": "Get Kubeconfig by stack",
"parameters": [
{
"type": "string",
Expand All @@ -8645,7 +8645,7 @@ const docTemplate = `{
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/github_com_openinfradev_tks-api_pkg_domain.GetStackKubeConfigResponse"
"$ref": "#/definitions/github_com_openinfradev_tks-api_pkg_domain.GetStackKubeconfigResponse"
}
}
}
Expand Down Expand Up @@ -11668,7 +11668,9 @@ const docTemplate = `{
],
"properties": {
"adminAccountId": {
"type": "string"
"type": "string",
"maxLength": 20,
"minLength": 0
},
"adminEmail": {
"type": "string"
Expand Down Expand Up @@ -11769,6 +11771,10 @@ const docTemplate = `{
"templateName"
],
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"deprecated": {
"type": "boolean",
"example": false
Expand Down Expand Up @@ -11815,6 +11821,15 @@ const docTemplate = `{
],
"example": "medium"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"templateName": {
"type": "string",
"example": "필수 Label 검사"
Expand All @@ -11830,6 +11845,10 @@ const docTemplate = `{
"versionUpType"
],
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"currentVersion": {
"type": "string",
"example": "v1.0.0"
Expand Down Expand Up @@ -11857,6 +11876,15 @@ const docTemplate = `{
"type": "string",
"example": "rego 코드"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"versionUpType": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -12193,7 +12221,9 @@ const docTemplate = `{
],
"properties": {
"accountId": {
"type": "string"
"type": "string",
"maxLength": 20,
"minLength": 0
},
"department": {
"type": "string",
Expand Down Expand Up @@ -13140,10 +13170,10 @@ const docTemplate = `{
}
}
},
"github_com_openinfradev_tks-api_pkg_domain.GetProjectNamespaceKubeConfigResponse": {
"github_com_openinfradev_tks-api_pkg_domain.GetProjectNamespaceKubeconfigResponse": {
"type": "object",
"properties": {
"kubeConfig": {
"kubeconfig": {
"type": "string"
}
}
Expand Down Expand Up @@ -13216,10 +13246,10 @@ const docTemplate = `{
}
}
},
"github_com_openinfradev_tks-api_pkg_domain.GetStackKubeConfigResponse": {
"github_com_openinfradev_tks-api_pkg_domain.GetStackKubeconfigResponse": {
"type": "object",
"properties": {
"kubeConfig": {
"kubeconfig": {
"type": "string"
}
}
Expand Down Expand Up @@ -14200,6 +14230,10 @@ const docTemplate = `{
"github_com_openinfradev_tks-api_pkg_domain.PolicyTemplateResponse": {
"type": "object",
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"createdAt": {
"type": "string"
},
Expand Down Expand Up @@ -14250,6 +14284,15 @@ const docTemplate = `{
],
"example": "medium"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"templateName": {
"type": "string",
"example": "필수 Label 검사"
Expand Down Expand Up @@ -14291,6 +14334,10 @@ const docTemplate = `{
"github_com_openinfradev_tks-api_pkg_domain.PolicyTemplateTwoVersionResponse": {
"type": "object",
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"createdAt": {
"type": "string"
},
Expand Down Expand Up @@ -14349,6 +14396,15 @@ const docTemplate = `{
],
"example": "medium"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"templateName": {
"type": "string",
"example": "필수 Label 검사"
Expand Down Expand Up @@ -16463,6 +16519,10 @@ const docTemplate = `{
"templateName"
],
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"deprecated": {
"type": "boolean",
"example": false
Expand Down Expand Up @@ -16509,6 +16569,15 @@ const docTemplate = `{
],
"example": "medium"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"templateName": {
"type": "string",
"example": "필수 Label 검사"
Expand All @@ -16524,6 +16593,10 @@ const docTemplate = `{
"versionUpType"
],
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"currentVersion": {
"type": "string",
"example": "v1.0.0"
Expand Down Expand Up @@ -16551,6 +16624,15 @@ const docTemplate = `{
"type": "string",
"example": "rego 코드"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"versionUpType": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -16704,6 +16786,10 @@ const docTemplate = `{
"github_com_openinfradev_tks-api_pkg_domain_admin.PolicyTemplateResponse": {
"type": "object",
"properties": {
"SyncJson": {
"type": "string",
"example": "[[]]"
},
"createdAt": {
"type": "string"
},
Expand Down Expand Up @@ -16760,6 +16846,15 @@ const docTemplate = `{
],
"example": "medium"
},
"syncKinds": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Ingress"
]
},
"templateName": {
"type": "string",
"example": "필수 Label 검사"
Expand Down
Loading

0 comments on commit 2bedb1b

Please sign in to comment.