dashboard/shell/edit/serviceaccount.vue

152 lines
3.8 KiB
Vue

<script>
import CreateEditView from '@shell/mixins/create-edit-view';
import CruResource from '@shell/components/CruResource';
import NameNsDescription from '@shell/components/form/NameNsDescription';
import Labels from '@shell/components/form/Labels';
import Tab from '@shell/components/Tabbed/Tab';
import Tabbed from '@shell/components/Tabbed';
import { Checkbox } from '@components/Form/Checkbox';
import { SECRET } from '@shell/config/types';
import { TYPES as SECRET_TYPES } from '@shell/models/secret';
import LabeledSelect from '@shell/components/form/LabeledSelect';
export default {
name: 'ServiceAccount',
components: {
CruResource,
NameNsDescription,
Checkbox,
Labels,
Tab,
Tabbed,
LabeledSelect
},
props: {
value: {
type: Object,
required: true
},
mode: {
type: String,
default: 'create'
}
},
async fetch() {
this.allSecrets = await this.$store.dispatch(`cluster/findAll`, { type: SECRET });
},
mixins: [CreateEditView],
data() {
this.$set(this.value, 'automountServiceAccountToken', this.value.automountServiceAccountToken || false);
return { allSecrets: [] };
},
computed: {
namespacedSecrets() {
const namespace = this.value?.metadata?.namespace;
return this.allSecrets.filter(secret => secret.metadata.namespace === namespace && (secret._type === SECRET_TYPES.DOCKER || secret._type === SECRET_TYPES.DOCKER_JSON));
},
imagePullSecrets: {
get() {
if (!this.value.imagePullSecrets) {
this.$set(this.value, 'imagePullSecrets', []);
}
const { imagePullSecrets } = this.value;
return imagePullSecrets.map(each => each.name);
},
set(neu) {
if (this.value.imagePullSecrets.length < 1) {
this.value.imagePullSecrets = neu.map((secret) => {
return { name: secret };
});
}
this.value.imagePullSecrets = neu.map((secret) => {
for (const x in secret) {
if (x === 'metadata') {
return { name: secret[x].name };
}
}
return { name: secret };
});
}
},
},
};
</script>
<template>
<CruResource
:done-route="doneRoute"
:mode="mode"
:resource="value"
:subtypes="[]"
:validation-passed="!!value.metadata.name"
:errors="errors"
@error="e=>errors = e"
@finish="save"
@cancel="done"
>
<NameNsDescription
:value="value"
:mode="mode"
/>
<Tabbed :side-tabs="true">
<Tab
name="data"
:label="t('serviceAccount.tabs.serviceAccount.label')"
:weight="2"
>
<div class="row">
<div class="col mt-20">
<Checkbox
v-model="value.automountServiceAccountToken"
:label="t('serviceAccount.automount')"
type="checkbox"
:mode="mode"
/>
</div>
</div>
<div class="row">
<div class="col span-6 mt-20">
<h3>{{ t('serviceAccount.imagePullSecrets') }}</h3>
<LabeledSelect
v-model="imagePullSecrets"
:label="t('workload.container.imagePullSecrets')"
:multiple="true"
:options="namespacedSecrets"
:mode="mode"
option-label="metadata.name"
/>
</div>
</div>
<div class="row mb-20" />
</Tab>
<Tab
name="labels-and-annotations"
label-key="generic.labelsAndAnnotations"
:weight="-1"
>
<Labels
default-container-class="labels-and-annotations-container"
:value="value"
:mode="mode"
:display-side-by-side="false"
/>
</Tab>
</Tabbed>
</CruResource>
</template>