Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions conf/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,10 @@ serviceActions:
method: delete
resourcePath: /api/projects/unassign/workspaces
description: "Workspace에서 Project 할당 해제"
assignPlatformRole:
method: post
resourcePath: /api/roles/assign/platform-role
description: "Platform Role 할당"

mc-infra-manager:
Lookupspeclist:
Expand Down Expand Up @@ -1566,6 +1570,10 @@ serviceActions:
method: post
resourcePath: /ns/{nsId}/cmd/mci/{mciId}
description: "Send a command to specified MCI"
Postclusterremotecmd:
method: post
resourcePath: /ns/{nsId}/cmd/k8sCluster/{k8sClusterId}
description: "Send a command to specified Cluster"
Fetchspecs:
method: post
resourcePath: /ns/{nsId}/resources/fetchSpecs
Expand Down
22 changes: 18 additions & 4 deletions front/assets/css/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@
cursor: pointer;
}



// NodeGroup 구성 폼 애니메이션
#nodegroup_configuration_dynamic {
transition: all 0.3s ease-in-out;
Expand Down Expand Up @@ -246,12 +244,12 @@
background: #fff;
color: #626976;
cursor: pointer;

&:hover {
background: #f8f9fa;
color: #206bc4;
}

&.active {
background: #206bc4;
color: #fff;
Expand All @@ -262,3 +260,19 @@
}
}
}

.dropzone .dz-preview .dz-progress {
opacity: 1;
z-index: 1000;
pointer-events: none;
position: absolute;
height: 20px;
top: 50%;
margin-top: -10px;
left: 15%;
right: 15%;
border: none !important;
background: transparent !important;
border-radius: 10px;
overflow: hidden;
}
6 changes: 2 additions & 4 deletions front/assets/js/pages/operation/workspace/csproles.js
Original file line number Diff line number Diff line change
Expand Up @@ -760,10 +760,8 @@ function addPolicyDocumentListeners() {

// 정책 문서 클리어
function clearPolicyDocument() {
if (confirm('정책 문서를 클리어하시겠습니까?')) {
document.getElementById('policyEditorDocument').value = '';
updatePolicyDocumentPreview();
}
document.getElementById('policyEditorDocument').value = '';
updatePolicyDocumentPreview();
}

// CSP Role 선택 상태 복원
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ <h5 class="modal-title" id="mci-cmdtestmodal-title">Remote Terminal</h5>
<div class="accordion-item">
<h2 class="accordion-header" id="mci-heading-1">
<button
class="accordion-button collapsed"
class="accordion-button collapsed modal-title"
type="button"
data-bs-toggle="collapse"
data-bs-target="#mci-collapse-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1530,11 +1530,19 @@ <h5 class="modal-title text-info">Policy Information & Editor</h5>
<div>
<button
type="button"
class="btn btn-sm btn-outline-secondary"
class="btn btn-sm btn-outline-secondary me-2"
onclick="togglePolicyDocument()"
>
<span id="policyDocumentToggleText">Expand</span>
</button>
<button
type="button"
class="btn btn-sm btn-outline-danger"
onclick="clearPolicyDocument()"
title="Clear Policy Document"
>
Clear
</button>
</div>
</div>
<div id="policyDocumentContainer" style="display: none">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ <h5 class="modal-title" id="cmdtestmodal-title">Remote Terminal</h5>
<div class="accordion-item">
<h2 class="accordion-header" id="subgroup-heading-1">
<button
class="accordion-button collapsed"
class="accordion-button collapsed modal-title"
type="button"
data-bs-toggle="collapse"
data-bs-target="#subgroup-collapse-1"
Expand Down
Loading