1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

feat(k8s/applications): Expose application workload type (#4029)

* feat(applications): Expose application workload type

* feat(application): support daemonSet workload type and add default value
This commit is contained in:
Maxime Bajeux 2020-07-17 00:00:15 +02:00 committed by GitHub
parent c9e8021fe8
commit 833abb24cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 2 deletions

View file

@ -36,7 +36,13 @@
</td>
</tr>
<tr>
<td>Deployment</td>
<td>Application Type</td>
<td>
{{ ctrl.application.ApplicationType | kubernetesApplicationTypeText }}
</td>
</tr>
<tr>
<td>Status</td>
<td>
<span ng-if="ctrl.application.DeploymentType === ctrl.KubernetesApplicationDeploymentTypes.REPLICATED">Replicated</span>
<span ng-if="ctrl.application.DeploymentType === ctrl.KubernetesApplicationDeploymentTypes.GLOBAL">Global</span>