You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/kubernetes/models/service/models.js

88 lines
1.7 KiB

export const KubernetesServiceHeadlessPrefix = 'headless-';
export const KubernetesServiceHeadlessClusterIP = 'None';
export const KubernetesServiceTypes = Object.freeze({
LOAD_BALANCER: 'LoadBalancer',
NODE_PORT: 'NodePort',
CLUSTER_IP: 'ClusterIP',
INGRESS: 'Ingress',
});
/**
* KubernetesService Model
*/
const _KubernetesService = Object.freeze({
Headless: false,
Namespace: '',
Name: '',
StackName: '',
Ports: [],
Type: '',
ClusterIP: '',
ApplicationName: '',
ApplicationOwner: '',
Note: '',
Ingress: false,
Selector: {},
nodePortError: false,
servicePortError: false,
});
export class KubernetesService {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesService)));
}
}
const _KubernetesIngressService = Object.freeze({
Headless: false,
Namespace: '',
Name: '',
StackName: '',
Ports: [],
Type: '',
ClusterIP: '',
ApplicationName: '',
ApplicationOwner: '',
Note: '',
Ingress: true,
IngressRoute: [],
});
export class KubernetesIngressService {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesIngressService)));
}
}
const _KubernetesIngressServiceRoute = Object.freeze({
Host: '',
IngressName: '',
Path: '',
ServiceName: '',
TLSCert: '',
});
export class KubernetesIngressServiceRoute {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesIngressServiceRoute)));
}
}
/**
* KubernetesServicePort Model
*/
const _KubernetesServicePort = Object.freeze({
name: '',
port: 0,
targetPort: 0,
protocol: '',
nodePort: 0,
ingress: '',
});
export class KubernetesServicePort {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesServicePort)));
}
}