mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
105 lines
2.6 KiB
TypeScript
105 lines
2.6 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* This file was automatically generated by json-schema-to-typescript.
|
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
* and run json-schema-to-typescript to regenerate this file.
|
|
*/
|
|
|
|
export interface K8SProxyConfigV1Beta1 {
|
|
/**
|
|
* Provides configuration for individual workloads. See more details at: https://istio.io/docs/reference/config/networking/proxy-config.html
|
|
*/
|
|
spec?: {
|
|
/**
|
|
* The number of worker threads to run.
|
|
*/
|
|
concurrency?: number;
|
|
/**
|
|
* Additional environment variables for the proxy.
|
|
*/
|
|
environmentVariables?: {
|
|
[k: string]: string;
|
|
};
|
|
/**
|
|
* Specifies the details of the proxy image.
|
|
*/
|
|
image?: {
|
|
/**
|
|
* The image type of the image.
|
|
*/
|
|
imageType?: string;
|
|
};
|
|
/**
|
|
* Optional.
|
|
*/
|
|
selector?: {
|
|
/**
|
|
* One or more labels that indicate a specific set of pods/VMs on which a policy should be applied.
|
|
*/
|
|
matchLabels?: {
|
|
[k: string]: string;
|
|
};
|
|
};
|
|
};
|
|
status?: {
|
|
/**
|
|
* Current service state of the resource.
|
|
*/
|
|
conditions?: {
|
|
/**
|
|
* Last time we probed the condition.
|
|
*/
|
|
lastProbeTime?: string;
|
|
/**
|
|
* Last time the condition transitioned from one status to another.
|
|
*/
|
|
lastTransitionTime?: string;
|
|
/**
|
|
* Human-readable message indicating details about last transition.
|
|
*/
|
|
message?: string;
|
|
/**
|
|
* Unique, one-word, CamelCase reason for the condition's last transition.
|
|
*/
|
|
reason?: string;
|
|
/**
|
|
* Status is the status of the condition.
|
|
*/
|
|
status?: string;
|
|
/**
|
|
* Type is the type of the condition.
|
|
*/
|
|
type?: string;
|
|
}[];
|
|
/**
|
|
* Resource Generation to which the Reconciled Condition refers.
|
|
*/
|
|
observedGeneration?: number | string;
|
|
/**
|
|
* Includes any errors or warnings detected by Istio's analyzers.
|
|
*/
|
|
validationMessages?: {
|
|
/**
|
|
* A url pointing to the Istio documentation for this specific error type.
|
|
*/
|
|
documentationUrl?: string;
|
|
/**
|
|
* Represents how severe a message is.
|
|
*
|
|
* Valid Options: UNKNOWN, ERROR, WARNING, INFO
|
|
*/
|
|
level?: "UNKNOWN" | "ERROR" | "WARNING" | "INFO";
|
|
type?: {
|
|
/**
|
|
* A 7 character code matching `^IST[0-9]{4}$` intended to uniquely identify the message type.
|
|
*/
|
|
code?: string;
|
|
/**
|
|
* A human-readable name for the message type.
|
|
*/
|
|
name?: string;
|
|
};
|
|
}[];
|
|
};
|
|
}
|