mirror of https://github.com/rancher/dashboard.git
148 lines
4.3 KiB
Vue
148 lines
4.3 KiB
Vue
<script>
|
|
import { _VIEW } from '@/config/query-params';
|
|
import { get, isEmpty, clone } from '@/utils/object';
|
|
import { NODE } from '@/config/types';
|
|
import MatchExpressions from '@/components/form/MatchExpressions';
|
|
import LabeledSelect from '@/components/form/LabeledSelect';
|
|
import { randomStr } from '@/utils/string';
|
|
import ArrayListGrouped from '@/components/form/ArrayListGrouped';
|
|
|
|
export default {
|
|
components: {
|
|
ArrayListGrouped, MatchExpressions, LabeledSelect
|
|
},
|
|
|
|
props: {
|
|
// value should be NodeAffinity or VolumeNodeAffinity
|
|
value: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
}
|
|
},
|
|
|
|
mode: {
|
|
type: String,
|
|
default: 'create'
|
|
},
|
|
},
|
|
|
|
data() {
|
|
// VolumeNodeAffinity only has 'required' field
|
|
if (this.value.required) {
|
|
return { nodeSelectorTerms: this.value.required.nodeSelectorTerms };
|
|
} else {
|
|
const { preferredDuringSchedulingIgnoredDuringExecution = [], requiredDuringSchedulingIgnoredDuringExecution = {} } = this.value;
|
|
const { nodeSelectorTerms = [] } = requiredDuringSchedulingIgnoredDuringExecution;
|
|
const allSelectorTerms = [...preferredDuringSchedulingIgnoredDuringExecution, ...nodeSelectorTerms].map((term) => {
|
|
const neu = clone(term);
|
|
|
|
neu._id = randomStr(4);
|
|
if (term.preference) {
|
|
Object.assign(neu, term.preference);
|
|
delete neu.preference;
|
|
}
|
|
|
|
return neu;
|
|
});
|
|
|
|
return {
|
|
allSelectorTerms,
|
|
weightedNodeSelectorTerms: preferredDuringSchedulingIgnoredDuringExecution,
|
|
defaultWeight: 1
|
|
};
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
isView() {
|
|
return this.mode === _VIEW;
|
|
},
|
|
hasWeighted() {
|
|
return !!this.weightedNodeSelectorTerms;
|
|
},
|
|
node() {
|
|
return NODE;
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
update() {
|
|
this.$nextTick(() => {
|
|
const out = {};
|
|
const requiredDuringSchedulingIgnoredDuringExecution = { nodeSelectorTerms: [] };
|
|
const preferredDuringSchedulingIgnoredDuringExecution = [] ;
|
|
|
|
this.allSelectorTerms.forEach((term) => {
|
|
if (term.weight) {
|
|
const neu = { weight: 1, preference: term };
|
|
|
|
preferredDuringSchedulingIgnoredDuringExecution.push(neu);
|
|
} else {
|
|
requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.push(term);
|
|
}
|
|
});
|
|
|
|
if (preferredDuringSchedulingIgnoredDuringExecution.length) {
|
|
out.preferredDuringSchedulingIgnoredDuringExecution = preferredDuringSchedulingIgnoredDuringExecution;
|
|
}
|
|
if (requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms.length) {
|
|
out.requiredDuringSchedulingIgnoredDuringExecution = requiredDuringSchedulingIgnoredDuringExecution;
|
|
}
|
|
this.$emit('input', out);
|
|
});
|
|
},
|
|
|
|
changePriority(term) {
|
|
if (term.weight) {
|
|
this.$delete(term, 'weight');
|
|
} else {
|
|
this.$set(term, 'weight', 1);
|
|
}
|
|
},
|
|
|
|
priorityDisplay(term) {
|
|
return term.weight ? this.t('workload.scheduling.affinity.preferred') : this.t('workload.scheduling.affinity.required');
|
|
},
|
|
|
|
get,
|
|
|
|
isEmpty
|
|
}
|
|
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="row" @input="update">
|
|
<div class="col span-12">
|
|
<ArrayListGrouped v-model="allSelectorTerms" class="mt-20" :default-add-value="{matchExpressions:[]}" :add-label="t('workload.scheduling.affinity.addNodeSelector')">
|
|
<template #default="props">
|
|
<div class="row">
|
|
<div class="col span-6">
|
|
<LabeledSelect
|
|
:options="[t('workload.scheduling.affinity.preferred'),t('workload.scheduling.affinity.required')]"
|
|
:value="priorityDisplay(props.row.value)"
|
|
:label="t('workload.scheduling.affinity.priority')"
|
|
:mode="mode"
|
|
@input="(changePriority(props.row.value))"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<MatchExpressions
|
|
v-model="props.row.value.matchExpressions"
|
|
:initial-empty-row="!isView"
|
|
:mode="mode"
|
|
class="col span-12 mt-20"
|
|
:type="node"
|
|
:show-remove="false"
|
|
/>
|
|
</template>
|
|
</ArrayListGrouped>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
</style>
|