mirror of https://github.com/rancher/dashboard.git
56 lines
1.4 KiB
Vue
56 lines
1.4 KiB
Vue
<script>
|
|
export default {
|
|
props: {
|
|
row: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
},
|
|
data(props) {
|
|
const mgmt = props.row?.mgmt;
|
|
|
|
return {
|
|
// The isImported getter on the provisioning cluster
|
|
// model doesn't work for imported K3s clusters, in
|
|
// which case it returns 'k3s' instead of 'imported.'
|
|
// This is the workaround.
|
|
isImported: mgmt?.providerForEmberParam === 'import' ||
|
|
// when imported cluster is GKE
|
|
!!mgmt?.spec?.gkeConfig?.imported ||
|
|
// or AKS
|
|
!!mgmt?.spec?.aksConfig?.imported ||
|
|
// or EKS
|
|
!!mgmt?.spec?.eksConfig?.imported
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<template v-if="row.machineProvider">
|
|
<span v-if="row.isHarvester && row.mgmt && row.mgmt.isReady && !row.hasError">
|
|
<a
|
|
v-if="row.mgmt.isReady && !row.hasError"
|
|
role="button"
|
|
@click="row.goToHarvesterCluster()"
|
|
>
|
|
{{ row.machineProviderDisplay }}
|
|
</a>
|
|
</span>
|
|
<span v-else>
|
|
{{ row.machineProviderDisplay }}
|
|
</span>
|
|
</template>
|
|
<template v-else-if="row.isCustom">
|
|
{{ t('cluster.provider.custom') }}
|
|
</template>
|
|
<template v-else-if="isImported">
|
|
{{ t('cluster.provider.imported') }}
|
|
</template>
|
|
<div class="text-muted">
|
|
{{ row.provisionerDisplay }}
|
|
</div>
|
|
</div>
|
|
</template>
|