fix(endpoints): show edge script when unassociated [EE-2842] (#6730)

pull/6750/head
Chaim Lev-Ari 2022-04-11 11:26:13 +03:00 committed by GitHub
parent 287107e8da
commit 13faa75a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 121 additions and 120 deletions

View File

@ -16,7 +16,7 @@ angular.module('portainer.app').factory('Endpoints', [
}, },
get: { method: 'GET', params: { id: '@id' } }, get: { method: 'GET', params: { id: '@id' } },
update: { method: 'PUT', params: { id: '@id' } }, update: { method: 'PUT', params: { id: '@id' } },
deassociate: { method: 'DELETE', params: { id: '@id', action: 'association' } }, disassociate: { method: 'DELETE', params: { id: '@id', action: 'association' } },
updateAccess: { method: 'PUT', params: { id: '@id', action: 'access' } }, updateAccess: { method: 'PUT', params: { id: '@id', action: 'access' } },
remove: { method: 'DELETE', params: { id: '@id' } }, remove: { method: 'DELETE', params: { id: '@id' } },
snapshots: { method: 'POST', params: { action: 'snapshot' } }, snapshots: { method: 'POST', params: { action: 'snapshot' } },

View File

@ -40,8 +40,8 @@ angular.module('portainer.app').factory('EndpointService', [
return Endpoints.updateAccess({ id: id }, { UserAccessPolicies: userAccessPolicies, TeamAccessPolicies: teamAccessPolicies }).$promise; return Endpoints.updateAccess({ id: id }, { UserAccessPolicies: userAccessPolicies, TeamAccessPolicies: teamAccessPolicies }).$promise;
}; };
service.deassociateEndpoint = function (endpointID) { service.disassociateEndpoint = function (endpointID) {
return Endpoints.deassociate({ id: endpointID }).$promise; return Endpoints.disassociate({ id: endpointID }).$promise;
}; };
service.updateEndpoint = function (id, payload) { service.updateEndpoint = function (id, payload) {

View File

@ -115,17 +115,17 @@ export function confirmDetachment(message: string, callback: ConfirmCallback) {
}); });
} }
export function confirmDeassociate(callback: ConfirmCallback) { export function confirmDisassociate(callback: ConfirmCallback) {
const message = const message =
'<p>De-associating this Edge environment will mark it as non associated and will clear the registered Edge ID.</p>' + '<p>Disassociating this Edge environment will mark it as non associated and will clear the registered Edge ID.</p>' +
'<p>Any agent started with the Edge key associated to this environment will be able to re-associate with this environment.</p>' + '<p>Any agent started with the Edge key associated to this environment will be able to re-associate with this environment.</p>' +
'<p>You can re-use the Edge ID and Edge key that you used to deploy the existing Edge agent to associate a new Edge device to this environment.</p>'; '<p>You can re-use the Edge ID and Edge key that you used to deploy the existing Edge agent to associate a new Edge device to this environment.</p>';
confirm({ confirm({
title: 'About de-associating', title: 'About disassociating',
message: sanitize(message), message: sanitize(message),
buttons: { buttons: {
confirm: { confirm: {
label: 'De-associate', label: 'Disassociate',
className: 'btn-primary', className: 'btn-primary',
}, },
}, },

View File

@ -4,7 +4,7 @@ import bootbox from 'bootbox';
import { import {
cancelRegistryRepositoryAction, cancelRegistryRepositoryAction,
confirmAsync, confirmAsync,
confirmDeassociate, confirmDisassociate,
confirmDeletion, confirmDeletion,
confirmDetachment, confirmDetachment,
confirmDeletionAsync, confirmDeletionAsync,
@ -46,7 +46,7 @@ export function ModalServiceAngular() {
cancelRegistryRepositoryAction, cancelRegistryRepositoryAction,
confirmDeletion, confirmDeletion,
confirmDetachment, confirmDetachment,
confirmDeassociate, confirmDisassociate,
confirmUpdate, confirmUpdate,
confirmRedeploy, confirmRedeploy,
confirmDeletionAsync, confirmDeletionAsync,

View File

@ -10,7 +10,8 @@
</rd-header> </rd-header>
<div class="row"> <div class="row">
<information-panel ng-if="state.edgeEndpoint && endpoint.EdgeID && endpoint.LastCheckInDate" title-text="Edge information"> <div ng-if="state.edgeEndpoint">
<information-panel ng-if="state.edgeAssociated" title-text="Edge information">
<span class="small text-muted"> <span class="small text-muted">
<p> <p>
<i class="fa fa-info-circle blue-icon" aria-hidden="true" style="margin-right: 2px"></i> <i class="fa fa-info-circle blue-icon" aria-hidden="true" style="margin-right: 2px"></i>
@ -27,18 +28,18 @@
type="button" type="button"
class="btn btn-primary btn-sm" class="btn btn-primary btn-sm"
ng-disabled="state.actionInProgress" ng-disabled="state.actionInProgress"
ng-click="onDeassociateEndpoint()" ng-click="onDisassociateEndpoint()"
button-spinner="state.actionInProgress" button-spinner="state.actionInProgress"
analytics-on analytics-on
analytics-event="edge-endpoint-deassociate" analytics-event="edge-endpoint-disassociate"
analytics-category="edge" analytics-category="edge"
> >
<span ng-hide="state.actionInProgress">De-associate</span> <span ng-hide="state.actionInProgress">Disassociate</span>
</button> </button>
</p> </p>
</span> </span>
</information-panel> </information-panel>
<information-panel ng-if="state.edgeEndpoint && !endpoint.LastCheckInDate" title-text="Deploy an agent"> <information-panel ng-if="!state.edgeAssociated" title-text="Deploy an agent">
<span class="small text-muted"> <span class="small text-muted">
<p> <p>
<i class="fa fa-info-circle blue-icon" aria-hidden="true" style="margin-right: 2px"></i> <i class="fa fa-info-circle blue-icon" aria-hidden="true" style="margin-right: 2px"></i>
@ -53,7 +54,6 @@
<label class="btn btn-primary" ng-model="state.platformType" uib-btn-radio="'windows'"><i class="fab fa-windows" style="margin-right: 2px"></i> Windows</label> <label class="btn btn-primary" ng-model="state.platformType" uib-btn-radio="'windows'"><i class="fab fa-windows" style="margin-right: 2px"></i> Windows</label>
</div> </div>
</div> </div>
<div class="form-group"> <div class="form-group">
<por-switch-field <por-switch-field
label="'Allow self-signed certs'" label="'Allow self-signed certs'"
@ -62,7 +62,6 @@
on-change="(onToggleAllowSelfSignedCerts)" on-change="(onToggleAllowSelfSignedCerts)"
></por-switch-field> ></por-switch-field>
</div> </div>
<div class="form-group clearfix" ng-if="!isKubernetesDeploymentTabSelected()"> <div class="form-group clearfix" ng-if="!isKubernetesDeploymentTabSelected()">
<label for="env_vars" class="col-sm-3 col-lg-2 control-label text-left" style="padding-left: 0; padding-top: 5px"> <label for="env_vars" class="col-sm-3 col-lg-2 control-label text-left" style="padding-left: 0; padding-top: 5px">
Environment variables Environment variables
@ -75,7 +74,6 @@
<input type="text" class="form-control" id="env_vars" ng-model="formValues.EnvVarSource" placeholder="foo=bar,myvar" /> <input type="text" class="form-control" id="env_vars" ng-model="formValues.EnvVarSource" placeholder="foo=bar,myvar" />
</div> </div>
</div> </div>
<div style="margin-top: 10px"> <div style="margin-top: 10px">
<uib-tabset active="state.deploymentTab"> <uib-tabset active="state.deploymentTab">
<uib-tab index="'kubernetes'" heading="Kubernetes" ng-if="state.platformType === 'linux'"> <uib-tab index="'kubernetes'" heading="Kubernetes" ng-if="state.platformType === 'linux'">
@ -116,7 +114,8 @@
</div> </div>
</span> </span>
</information-panel> </information-panel>
<information-panel ng-if="state.kubernetesEndpoint && (!state.edgeEndpoint || (state.edgeEndpoint && endpoint.EdgeID))" title-text="Kubernetes features configuration"> </div>
<information-panel ng-if="state.kubernetesEndpoint && (!state.edgeEndpoint || state.edgeAssociated)" title-text="Kubernetes features configuration">
<span class="small text-muted"> <span class="small text-muted">
<i class="fa fa-tools blue-icon" aria-hidden="true" style="margin-right: 2px"></i> <i class="fa fa-tools blue-icon" aria-hidden="true" style="margin-right: 2px"></i>
You should configure the features available in this Kubernetes environment in the You should configure the features available in this Kubernetes environment in the

View File

@ -47,6 +47,7 @@ function EndpointController(
kubernetesEndpoint: false, kubernetesEndpoint: false,
agentEndpoint: false, agentEndpoint: false,
edgeEndpoint: false, edgeEndpoint: false,
edgeAssociated: false,
allowCreate: Authentication.isAdmin(), allowCreate: Authentication.isAdmin(),
availableEdgeAgentCheckinOptions: [ availableEdgeAgentCheckinOptions: [
{ key: 'Use default interval', value: 0 }, { key: 'Use default interval', value: 0 },
@ -139,24 +140,24 @@ function EndpointController(
} }
} }
$scope.onDeassociateEndpoint = async function () { $scope.onDisassociateEndpoint = async function () {
ModalService.confirmDeassociate((confirmed) => { ModalService.confirmDisassociate((confirmed) => {
if (confirmed) { if (confirmed) {
deassociateEndpoint(); disassociateEndpoint();
} }
}); });
}; };
async function deassociateEndpoint() { async function disassociateEndpoint() {
var endpoint = $scope.endpoint; var endpoint = $scope.endpoint;
try { try {
$scope.state.actionInProgress = true; $scope.state.actionInProgress = true;
await EndpointService.deassociateEndpoint(endpoint.Id); await EndpointService.disassociateEndpoint(endpoint.Id);
Notifications.success('Environment de-associated', $scope.endpoint.Name); Notifications.success('Environment disassociated', $scope.endpoint.Name);
$state.reload(); $state.reload();
} catch (err) { } catch (err) {
Notifications.error('Failure', err, 'Unable to de-associate environment'); Notifications.error('Failure', err, 'Unable to disassociate environment');
} finally { } finally {
$scope.state.actionInProgress = false; $scope.state.actionInProgress = false;
} }
@ -280,6 +281,8 @@ function EndpointController(
if (endpoint.Type === PortainerEndpointTypes.EdgeAgentOnDockerEnvironment || endpoint.Type === PortainerEndpointTypes.EdgeAgentOnKubernetesEnvironment) { if (endpoint.Type === PortainerEndpointTypes.EdgeAgentOnDockerEnvironment || endpoint.Type === PortainerEndpointTypes.EdgeAgentOnKubernetesEnvironment) {
$scope.edgeKeyDetails = decodeEdgeKey(endpoint.EdgeKey); $scope.edgeKeyDetails = decodeEdgeKey(endpoint.EdgeKey);
$scope.state.edgeAssociated = !!endpoint.EdgeID;
endpoint.EdgeID = endpoint.EdgeID || uuidv4(); endpoint.EdgeID = endpoint.EdgeID || uuidv4();
$scope.state.availableEdgeAgentCheckinOptions[0].key += ` (${settings.EdgeAgentCheckinInterval} seconds)`; $scope.state.availableEdgeAgentCheckinOptions[0].key += ` (${settings.EdgeAgentCheckinInterval} seconds)`;
@ -291,8 +294,7 @@ function EndpointController(
configureState(); configureState();
const disconnectedEdge = $scope.state.edgeEndpoint && !endpoint.EdgeID; if (EndpointHelper.isDockerEndpoint(endpoint) && $scope.state.edgeAssociated) {
if (EndpointHelper.isDockerEndpoint(endpoint) && !disconnectedEdge) {
$scope.state.showAMTInfo = settings && settings.openAMTConfiguration && settings.openAMTConfiguration.enabled; $scope.state.showAMTInfo = settings && settings.openAMTConfiguration && settings.openAMTConfiguration.enabled;
} }
} catch (err) { } catch (err) {