v0.0.8 | CORS 설정에 X-NHN-Appkey 헤더 허용 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 36s
All checks were successful
Build And Test / build-and-push (push) Successful in 36s
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@ -141,13 +141,12 @@ def create_instance_async(region, tenant_id, token, instance_data):
|
||||
return task
|
||||
|
||||
|
||||
def create_nks_cluster_async(region, tenant_id, token, cluster_data):
|
||||
def create_nks_cluster_async(region, token, cluster_data):
|
||||
"""
|
||||
NKS 클러스터 비동기 생성
|
||||
|
||||
Args:
|
||||
region: 리전
|
||||
tenant_id: 테넌트 ID
|
||||
token: API 토큰
|
||||
cluster_data: 클러스터 생성 데이터 (dict)
|
||||
|
||||
@ -165,7 +164,7 @@ def create_nks_cluster_async(region, tenant_id, token, cluster_data):
|
||||
)
|
||||
|
||||
# API 객체 생성
|
||||
api = ApiNks(region, tenant_id, token)
|
||||
api = ApiNks(region, token)
|
||||
|
||||
# 비동기 실행
|
||||
execute_async_task(
|
||||
|
||||
Reference in New Issue
Block a user