mirror of https://github.com/rancher/dashboard.git
19 lines
339 B
JavaScript
19 lines
339 B
JavaScript
export default {
|
|
|
|
nameDisplay() {
|
|
return this.name.replace(`${ this.metadata.annotations['objectset.rio.cattle.io/owner-name'] }-`, '');
|
|
},
|
|
|
|
provider() {
|
|
return 'linode';
|
|
},
|
|
|
|
providerLocation() {
|
|
return this.spec.template.spec.region ;
|
|
},
|
|
|
|
providerSize() {
|
|
return this.spec.template.spec.instanceType;
|
|
}
|
|
};
|