dashboard/shell/models/networking.istio.io.destina...

20 lines
441 B
JavaScript

import SteveModel from '@shell/plugins/steve/steve-class';
export default class DestinationRule extends SteveModel {
applyDefaults() {
this['spec'] = {
host: '',
subsets: [],
trafficPolicy: {
loadBalancer: { simple: 'ROUND_ROBIN' },
connectionPool: {
tcp: {},
http: {},
},
outlierDetection: {},
tls: {},
}
};
}
}