mirror of https://github.com/rancher/dashboard.git
96 lines
1.8 KiB
Vue
96 lines
1.8 KiB
Vue
<script>
|
|
import KeyValue from '@/components/form/KeyValue';
|
|
import Select from '@/components/form/Select';
|
|
|
|
export default {
|
|
components: { KeyValue, Select },
|
|
|
|
props: {
|
|
mode: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
value: {
|
|
type: Object,
|
|
default: () => {
|
|
return {};
|
|
},
|
|
},
|
|
|
|
nodes: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
|
|
containers: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
update() {},
|
|
|
|
removeRule() {
|
|
this.$emit('remove');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<KeyValue
|
|
v-model="value.labels"
|
|
:title="value.select ? 'Include Pods' : 'Exclude Pods'"
|
|
:mode="mode"
|
|
:initial-empty-row="true"
|
|
:read-allowed="false"
|
|
:title-add="true"
|
|
protip=""
|
|
key-label="Pod Label Key"
|
|
value-label="Pod Label Value"
|
|
add-label="Add Pod"
|
|
/>
|
|
<div class="spacer"></div>
|
|
<h3>
|
|
Limit to specific nodes
|
|
</h3>
|
|
<div class="row">
|
|
<div class="col span-12">
|
|
<Select
|
|
v-model="value.hosts"
|
|
class="lg"
|
|
:options="nodes"
|
|
placeholder="Default: Any node"
|
|
:multiple="true"
|
|
:searchable="true"
|
|
:taggable="true"
|
|
:clearable="true"
|
|
:close-on-select="false"
|
|
:reduce="(e) => e.value"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="spacer"></div>
|
|
<h3>
|
|
Limit to specific container names
|
|
</h3>
|
|
<div class="row">
|
|
<div class="col span-12">
|
|
<Select
|
|
v-model="value.container_names"
|
|
class="lg"
|
|
:options="containers"
|
|
placeholder="Default: Any container"
|
|
:multiple="true"
|
|
:taggable="true"
|
|
:clearable="true"
|
|
:close-on-select="false"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|